diff options
Diffstat (limited to 'libc/sysdeps/linux/common/query_module.c')
-rw-r--r-- | libc/sysdeps/linux/common/query_module.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/query_module.c b/libc/sysdeps/linux/common/query_module.c new file mode 100644 index 000000000..54cf28275 --- /dev/null +++ b/libc/sysdeps/linux/common/query_module.c @@ -0,0 +1,21 @@ +/* vi: set sw=4 ts=4: */ +/* + * query_module() for uClibc + * + * Copyright (C) 2000-2004 by Erik Andersen <andersen@codpoet.org> + * + * GNU Library General Public License (LGPL) version 2 or later. + */ + +#include "syscalls.h" +# ifdef __NR_query_module +_syscall5(int, query_module, const char *, name, int, which, + void *, buf, size_t, bufsize, size_t *, ret); +# else +int query_module(const char *name, int which, + void *buf, size_t bufsize, size_t * ret) +{ + __set_errno(ENOSYS); + return -1; +} +# endif |