diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-06 20:47:33 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-06 20:47:33 +0000 |
commit | 65d898209f1063e88397d8b1411d3b9df3f797ee (patch) | |
tree | 588d140a71e857cb32c80d1faad6f3073b119aa7 /modutils/lsmod.c | |
parent | 2cb5ca3cd6461e4e9632f53b4cece1ade0282580 (diff) | |
download | busybox-w32-65d898209f1063e88397d8b1411d3b9df3f797ee.tar.gz busybox-w32-65d898209f1063e88397d8b1411d3b9df3f797ee.tar.bz2 busybox-w32-65d898209f1063e88397d8b1411d3b9df3f797ee.zip |
Robert P. Day removed 8 gazillion occurrences of "extern" on function
definitions. (That should only be on prototypes.)
git-svn-id: svn://busybox.net/trunk/busybox@14457 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'modutils/lsmod.c')
-rw-r--r-- | modutils/lsmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c index 018bc5323..82136dd0f 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c | |||
@@ -97,7 +97,7 @@ static const int NEW_MOD_VISITED = 8; | |||
97 | static const int NEW_MOD_USED_ONCE = 16; | 97 | static const int NEW_MOD_USED_ONCE = 16; |
98 | static const int NEW_MOD_INITIALIZING = 64; | 98 | static const int NEW_MOD_INITIALIZING = 64; |
99 | 99 | ||
100 | extern int lsmod_main(int argc, char **argv) | 100 | int lsmod_main(int argc, char **argv) |
101 | { | 101 | { |
102 | struct module_info info; | 102 | struct module_info info; |
103 | char *module_names, *mn, *deps, *dn; | 103 | char *module_names, *mn, *deps, *dn; |
@@ -160,7 +160,7 @@ extern int lsmod_main(int argc, char **argv) | |||
160 | 160 | ||
161 | #else /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */ | 161 | #else /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */ |
162 | 162 | ||
163 | extern int lsmod_main(int argc, char **argv) | 163 | int lsmod_main(int argc, char **argv) |
164 | { | 164 | { |
165 | printf("Module Size Used by"); | 165 | printf("Module Size Used by"); |
166 | check_tainted(); | 166 | check_tainted(); |