diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-12 00:21:20 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-12 00:21:20 +0000 |
commit | a740502a3d857a70f64fe31fda87b775d4cf1126 (patch) | |
tree | b060d99787e840b5be9ab79479ad7a74e07ca896 /libc/sysdeps/linux/common/create_module.c | |
parent | 93261cdf00778d5706a72bbbeb3a379bfaad948c (diff) |
Cope gracefully with missing module syscalls
Diffstat (limited to 'libc/sysdeps/linux/common/create_module.c')
-rw-r--r-- | libc/sysdeps/linux/common/create_module.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/create_module.c b/libc/sysdeps/linux/common/create_module.c index 1283503fe..e1a4cfb04 100644 --- a/libc/sysdeps/linux/common/create_module.c +++ b/libc/sysdeps/linux/common/create_module.c @@ -66,5 +66,11 @@ unsigned long create_module(const char *name, size_t size) _syscall2(unsigned long, create_module, const char *, name, size_t, size); #endif +#else +unsigned long create_module(const char *name, size_t size) +{ + __set_errno(ENOSYS); + return (unsigned long)-1; +} #endif |