diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/awk.c | 2 | ||||
-rw-r--r-- | editors/sed.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editors/awk.c b/editors/awk.c index 3ee6773..6e81e23 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -29,8 +29,8 @@ #include <math.h> #include <ctype.h> #include <getopt.h> -#include <regex.h> +#include "xregex.h" #include "busybox.h" diff --git a/editors/sed.c b/editors/sed.c index 166e837..3b0cebd 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -79,12 +79,12 @@ #include <stdio.h> #include <unistd.h> /* for getopt() */ -#include <regex.h> #include <string.h> /* for strdup() */ #include <errno.h> #include <ctype.h> /* for isspace() */ #include <stdlib.h> #include "busybox.h" +#include "xregex.h" typedef struct sed_cmd_s { /* Ordered by alignment requirements: currently 36 bytes on x86 */ |