diff options
Diffstat (limited to 'editors/ed.c')
-rw-r--r-- | editors/ed.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/editors/ed.c b/editors/ed.c index a4c419099..8da7b1dd5 100644 --- a/editors/ed.c +++ b/editors/ed.c | |||
@@ -23,6 +23,7 @@ | |||
23 | //usage:#define ed_full_usage "" | 23 | //usage:#define ed_full_usage "" |
24 | 24 | ||
25 | #include "libbb.h" | 25 | #include "libbb.h" |
26 | #include "common_bufsiz.h" | ||
26 | 27 | ||
27 | typedef struct LINE { | 28 | typedef struct LINE { |
28 | struct LINE *next; | 29 | struct LINE *next; |
@@ -32,11 +33,12 @@ typedef struct LINE { | |||
32 | } LINE; | 33 | } LINE; |
33 | 34 | ||
34 | 35 | ||
35 | #define searchString bb_common_bufsiz1 | 36 | #define searchString bb_common_bufsiz1 |
37 | #define sizeof_searchString COMMON_BUFSIZE | ||
36 | 38 | ||
37 | enum { | 39 | enum { |
38 | USERSIZE = sizeof(searchString) > 1024 ? 1024 | 40 | USERSIZE = sizeof_searchString > 1024 ? 1024 |
39 | : sizeof(searchString) - 1, /* max line length typed in by user */ | 41 | : sizeof_searchString - 1, /* max line length typed in by user */ |
40 | INITBUF_SIZE = 1024, /* initial buffer size */ | 42 | INITBUF_SIZE = 1024, /* initial buffer size */ |
41 | }; | 43 | }; |
42 | 44 | ||