Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-14 20:59:11 +0400
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-14 20:59:11 +0400
commit23f62fc6f3b8d01a953266ddd404c392b128c952 (patch)
treea6de7890b9cffd9bef96ebc8b326d63435955219 /editors/sed.c
parentb4f3cff6f5e77ce0a0edb12e6a5811d0063080ca (diff)
split libbb: moved xregcomp separatelly for speed up recompile
Diffstat (limited to 'editors/sed.c')
-rw-r--r--editors/sed.c2
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 */