diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-09-28 11:57:15 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-09-30 18:43:55 +0200 |
commit | 6884573b944c79b7d0049334eaa78dae2692b874 (patch) | |
tree | a13b633812fa6d4ce66c089ee7493fd9b711073f /libc/sysdeps/linux/common/query_module.c | |
parent | 15186b99774df74cf8ab02acd1a3f0ffd4c54ca1 (diff) |
remove linux kernel 2.4 modules support
Diffstat (limited to 'libc/sysdeps/linux/common/query_module.c')
-rw-r--r-- | libc/sysdeps/linux/common/query_module.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libc/sysdeps/linux/common/query_module.c b/libc/sysdeps/linux/common/query_module.c deleted file mode 100644 index 7c168df45..000000000 --- a/libc/sysdeps/linux/common/query_module.c +++ /dev/null @@ -1,16 +0,0 @@ -/* vi: set sw=4 ts=4: */ -/* - * query_module() for uClibc - * - * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> - * - * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. - */ - -#include <sys/syscall.h> -int query_module(const char *name attribute_unused, int which attribute_unused, - void *buf attribute_unused, size_t bufsize attribute_unused, size_t * ret attribute_unused); -#ifdef __NR_query_module -_syscall5(int, query_module, const char *, name, int, which, - void *, buf, size_t, bufsize, size_t *, ret) -#endif |