From a740502a3d857a70f64fe31fda87b775d4cf1126 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 12 Mar 2004 00:21:20 +0000 Subject: Cope gracefully with missing module syscalls --- libc/sysdeps/linux/common/create_module.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libc/sysdeps/linux/common/create_module.c') 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 -- cgit v1.2.3