aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-14 16:59:11 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-14 16:59:11 +0000
commit370ce81296cb8401bc6b5af6b4ab0f4b8cb4e30f (patch)
treea6de7890b9cffd9bef96ebc8b326d63435955219 /editors
parent0b3f32b784e3aa768510d008b34d1f0b406011b2 (diff)
downloadbusybox-w32-370ce81296cb8401bc6b5af6b4ab0f4b8cb4e30f.tar.gz
busybox-w32-370ce81296cb8401bc6b5af6b4ab0f4b8cb4e30f.tar.bz2
busybox-w32-370ce81296cb8401bc6b5af6b4ab0f4b8cb4e30f.zip
split libbb: moved xregcomp separatelly for speed up recompile
git-svn-id: svn://busybox.net/trunk/busybox@11464 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'editors')
-rw-r--r--editors/awk.c2
-rw-r--r--editors/sed.c2
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
89typedef struct sed_cmd_s { 89typedef struct sed_cmd_s {
90 /* Ordered by alignment requirements: currently 36 bytes on x86 */ 90 /* Ordered by alignment requirements: currently 36 bytes on x86 */