aboutsummaryrefslogtreecommitdiff
path: root/sed.c
diff options
context:
space:
mode:
Diffstat (limited to 'sed.c')
-rw-r--r--sed.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sed.c b/sed.c
index a50d8d03b..95aad79e8 100644
--- a/sed.c
+++ b/sed.c
@@ -47,9 +47,11 @@
47#include <string.h> /* for strdup() */ 47#include <string.h> /* for strdup() */
48#include <errno.h> 48#include <errno.h>
49#include <ctype.h> /* for isspace() */ 49#include <ctype.h> /* for isspace() */
50#include <stdlib.h>
50#include "busybox.h" 51#include "busybox.h"
51 52
52/* externs */ 53/* externs */
54extern void xregcomp(regex_t *preg, const char *regex, int cflags);
53extern int optind; /* in unistd.h */ 55extern int optind; /* in unistd.h */
54extern char *optarg; /* ditto */ 56extern char *optarg; /* ditto */
55 57