diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-14 16:59:11 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-14 16:59:11 +0000 |
commit | 23f62fc6f3b8d01a953266ddd404c392b128c952 (patch) | |
tree | a6de7890b9cffd9bef96ebc8b326d63435955219 /editors | |
parent | b4f3cff6f5e77ce0a0edb12e6a5811d0063080ca (diff) | |
download | busybox-23f62fc6f3b8d01a953266ddd404c392b128c952.tar.gz |
split libbb: moved xregcomp separatelly for speed up recompile
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 3ee677304..6e81e23a9 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 166e837da..3b0cebda6 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 */ |