diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-31 04:29:18 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-31 04:29:18 +0000 |
commit | a41983bf0d8640d0a1269c58c0b590cc87777c86 (patch) | |
tree | 299344bb9671cb49170d5d4bea40cbb63694928d /libc/sysdeps | |
parent | 38ff147a36b98d6c2e0027c0276ba92318ba2add (diff) | |
download | uClibc-alpine-a41983bf0d8640d0a1269c58c0b590cc87777c86.tar.bz2 uClibc-alpine-a41983bf0d8640d0a1269c58c0b590cc87777c86.tar.xz |
Patch from Martin Proulx <mproulx@okiok.com> to fix i960
create_module() support.
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/common/create_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/create_module.c b/libc/sysdeps/linux/common/create_module.c index ca306cd90..9b80fe84e 100644 --- a/libc/sysdeps/linux/common/create_module.c +++ b/libc/sysdeps/linux/common/create_module.c @@ -29,7 +29,7 @@ //#define __NR_create_module 127 -#if defined(__i386__) || defined(__m68k__) || defined(__arm__) +#if defined(__i386__) || defined(__m68k__) || defined(__arm__) || defined(__i960__) #define __NR___create_module __NR_create_module #ifdef __STR_NR_create_module #define __STR_NR___create_module __STR_NR_create_module |