diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-04-16 19:39:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-04-16 19:39:00 +0000 |
commit | 14f5c8d764ab7429367feb407ab86191054e6a8a (patch) | |
tree | 2aa792b8a9d8f7af365c456f19f34a963236c26d /libbb/interface.c | |
parent | a77b4f39708306d44058d7ca1683f448f51c5fce (diff) | |
download | busybox-w32-14f5c8d764ab7429367feb407ab86191054e6a8a.tar.gz busybox-w32-14f5c8d764ab7429367feb407ab86191054e6a8a.tar.bz2 busybox-w32-14f5c8d764ab7429367feb407ab86191054e6a8a.zip |
Patch from Bernhard Fischer to make a bunch of symbols static
which were otherwise cluttering the global namespace.
Diffstat (limited to 'libbb/interface.c')
-rw-r--r-- | libbb/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/interface.c b/libbb/interface.c index db18b9ad9..37a5f6405 100644 --- a/libbb/interface.c +++ b/libbb/interface.c | |||
@@ -986,7 +986,7 @@ static int if_readconf(void) | |||
986 | return err; | 986 | return err; |
987 | } | 987 | } |
988 | 988 | ||
989 | char *get_name(char *name, char *p) | 989 | static char *get_name(char *name, char *p) |
990 | { | 990 | { |
991 | /* Extract <name>[:<alias>] from nul-terminated p where p matches | 991 | /* Extract <name>[:<alias>] from nul-terminated p where p matches |
992 | <name>[:<alias>]: after leading whitespace. | 992 | <name>[:<alias>]: after leading whitespace. |