diff options
author | Erik Andersen <andersen@codepoet.org> | 1999-12-17 01:08:27 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 1999-12-17 01:08:27 +0000 |
commit | 6da0ae8183a31d4faab745d534a363c7e66ef864 (patch) | |
tree | ace76c8f54a854d9e24d303e4fbe4564425b233b /modutils | |
parent | c144e330c0342a8ed0c9d917fd5a064317652c8a (diff) | |
download | busybox-6da0ae8183a31d4faab745d534a363c7e66ef864.tar.gz busybox-6da0ae8183a31d4faab745d534a363c7e66ef864.tar.bz2 busybox-6da0ae8183a31d4faab745d534a363c7e66ef864.zip |
Minor fixes to rmmod. First pass at insmod (not yet working).
-Erik
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/rmmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/rmmod.c b/modutils/rmmod.c index 650a5b04f..6b15b48bb 100644 --- a/modutils/rmmod.c +++ b/modutils/rmmod.c @@ -29,7 +29,7 @@ /* And the system call of the day is... */ -extern int delete_module (const char * __name); +_syscall1(int, delete_module, const char *, name) static const char rmmod_usage[] = |