diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-08-21 19:38:49 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-08-21 19:38:49 +0000 |
commit | c86e5e614563349963693ae56e77240bf64682bf (patch) | |
tree | b110fcea427c4834a21a5a6255305a0f35725612 /utility.c | |
parent | be0dc0d06a730bd3a9e7567af6918a673d5135ee (diff) | |
download | busybox-w32-c86e5e614563349963693ae56e77240bf64682bf.tar.gz busybox-w32-c86e5e614563349963693ae56e77240bf64682bf.tar.bz2 busybox-w32-c86e5e614563349963693ae56e77240bf64682bf.zip |
Some leftover stuff I forgot to commit for the lsmod change.
-Erik
Diffstat (limited to 'utility.c')
-rw-r--r-- | utility.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -153,6 +153,13 @@ extern _syscall5(int, mount, const char *, special_file, const char *, dir, | |||
153 | const char *, fstype, unsigned long int, rwflag, const void *, data); | 153 | const char *, fstype, unsigned long int, rwflag, const void *, data); |
154 | #endif | 154 | #endif |
155 | 155 | ||
156 | #if defined BB_INSMOD || defined BB_LSMOD | ||
157 | #ifndef __NR_query_module | ||
158 | #define __NR_query_module 167 | ||
159 | #endif | ||
160 | _syscall5(int, query_module, const char *, name, int, which, | ||
161 | void *, buf, size_t, bufsize, size_t*, ret); | ||
162 | #endif | ||
156 | 163 | ||
157 | 164 | ||
158 | #if defined (BB_CP_MV) || defined (BB_DU) | 165 | #if defined (BB_CP_MV) || defined (BB_DU) |