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-w32-23f62fc6f3b8d01a953266ddd404c392b128c952.tar.gz busybox-w32-23f62fc6f3b8d01a953266ddd404c392b128c952.tar.bz2 busybox-w32-23f62fc6f3b8d01a953266ddd404c392b128c952.zip |
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 @@ | |||
29 | #include <math.h> | 29 | #include <math.h> |
30 | #include <ctype.h> | 30 | #include <ctype.h> |
31 | #include <getopt.h> | 31 | #include <getopt.h> |
32 | #include <regex.h> | ||
33 | 32 | ||
33 | #include "xregex.h" | ||
34 | #include "busybox.h" | 34 | #include "busybox.h" |
35 | 35 | ||
36 | 36 | ||
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 @@ | |||
79 | 79 | ||
80 | #include <stdio.h> | 80 | #include <stdio.h> |
81 | #include <unistd.h> /* for getopt() */ | 81 | #include <unistd.h> /* for getopt() */ |
82 | #include <regex.h> | ||
83 | #include <string.h> /* for strdup() */ | 82 | #include <string.h> /* for strdup() */ |
84 | #include <errno.h> | 83 | #include <errno.h> |
85 | #include <ctype.h> /* for isspace() */ | 84 | #include <ctype.h> /* for isspace() */ |
86 | #include <stdlib.h> | 85 | #include <stdlib.h> |
87 | #include "busybox.h" | 86 | #include "busybox.h" |
87 | #include "xregex.h" | ||
88 | 88 | ||
89 | typedef struct sed_cmd_s { | 89 | typedef struct sed_cmd_s { |
90 | /* Ordered by alignment requirements: currently 36 bytes on x86 */ | 90 | /* Ordered by alignment requirements: currently 36 bytes on x86 */ |