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/sed.c | |
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/sed.c')
-rw-r--r-- | editors/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |