diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-29 10:16:05 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-29 10:16:05 +0000 |
commit | dadfb4975b23b284fa02d15a5cfd21593b2993fc (patch) | |
tree | 993a6e7a9efd1d2a06408d9cd069cb4eeb09e883 /modutils/rmmod.c | |
parent | e1ee48e0fdfe18aadb410b62f21516bf4b8ea581 (diff) | |
download | busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.tar.gz busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.tar.bz2 busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.zip |
hush: add #defines to switch off break/continue if loops are not supported
*: remove a few inline keywords
no code changes
Diffstat (limited to 'modutils/rmmod.c')
-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 a96a27457..5129b3495 100644 --- a/modutils/rmmod.c +++ b/modutils/rmmod.c | |||
@@ -17,7 +17,7 @@ extern int delete_module(const char *module, unsigned int flags); | |||
17 | #endif | 17 | #endif |
18 | 18 | ||
19 | #if ENABLE_FEATURE_2_6_MODULES | 19 | #if ENABLE_FEATURE_2_6_MODULES |
20 | static inline void filename2modname(char *modname, const char *afterslash) | 20 | static void filename2modname(char *modname, const char *afterslash) |
21 | { | 21 | { |
22 | unsigned int i; | 22 | unsigned int i; |
23 | int kr_chk = 1; | 23 | int kr_chk = 1; |