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) |
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 @@ #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 */ |