diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-14 16:22:50 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-14 16:22:50 +0000 |
commit | b4f3cff6f5e77ce0a0edb12e6a5811d0063080ca (patch) | |
tree | e01a86a4576682a6d5cbcb594c3c7c59fd88d721 | |
parent | 1e07f852e0f236a0360c5fd44356a2e391185145 (diff) | |
download | busybox-w32-b4f3cff6f5e77ce0a0edb12e6a5811d0063080ca.tar.gz busybox-w32-b4f3cff6f5e77ce0a0edb12e6a5811d0063080ca.tar.bz2 busybox-w32-b4f3cff6f5e77ce0a0edb12e6a5811d0063080ca.zip |
removed strange extern void xregcomp(... from some applets, but declared from libbb.h
-rw-r--r-- | editors/awk.c | 1 | ||||
-rw-r--r-- | findutils/grep.c | 2 | ||||
-rw-r--r-- | miscutils/devfsd.c | 2 |
3 files changed, 0 insertions, 5 deletions
diff --git a/editors/awk.c b/editors/awk.c index ed8b0f20f..3ee677304 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -439,7 +439,6 @@ static struct { | |||
439 | } t; | 439 | } t; |
440 | 440 | ||
441 | /* function prototypes */ | 441 | /* function prototypes */ |
442 | extern void xregcomp(regex_t *preg, const char *regex, int cflags); | ||
443 | static void handle_special(var *); | 442 | static void handle_special(var *); |
444 | static node *parse_expr(unsigned long); | 443 | static node *parse_expr(unsigned long); |
445 | static void chain_group(void); | 444 | static void chain_group(void); |
diff --git a/findutils/grep.c b/findutils/grep.c index 2a667e37f..e796294f3 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -105,8 +105,6 @@ static void print_line(const char *line, int linenum, char decoration) | |||
105 | puts(line); | 105 | puts(line); |
106 | } | 106 | } |
107 | 107 | ||
108 | extern void xregcomp(regex_t *preg, const char *regex, int cflags); | ||
109 | |||
110 | 108 | ||
111 | static int grep_file(FILE *file) | 109 | static int grep_file(FILE *file) |
112 | { | 110 | { |
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c index 0a6bf14c7..24b91be5c 100644 --- a/miscutils/devfsd.c +++ b/miscutils/devfsd.c | |||
@@ -294,8 +294,6 @@ static struct event_type | |||
294 | 294 | ||
295 | /* busybox functions and messages */ | 295 | /* busybox functions and messages */ |
296 | 296 | ||
297 | extern void xregcomp(regex_t * preg, const char *regex, int cflags); | ||
298 | |||
299 | const char * const bb_msg_proto_rev = "protocol revision"; | 297 | const char * const bb_msg_proto_rev = "protocol revision"; |
300 | #ifdef CONFIG_DEVFSD_VERBOSE | 298 | #ifdef CONFIG_DEVFSD_VERBOSE |
301 | const char * const bb_msg_bad_config = "bad %s config file: %s\n"; | 299 | const char * const bb_msg_bad_config = "bad %s config file: %s\n"; |