diff options
Diffstat (limited to 'string/strstr.c')
-rw-r--r-- | string/strstr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/string/strstr.c b/string/strstr.c index cfed77119d..d74cb46975 100644 --- a/string/strstr.c +++ b/string/strstr.c @@ -35,10 +35,8 @@ #define AVAILABLE(h, h_l, j, n_l) \ (!memchr ((h) + (h_l), '\0', (j) + (n_l) - (h_l)) \ && ((h_l) = (j) + (n_l))) -#define AVAILABLE1(h, h_l, j, n_l) (true) -#define AVAILABLE2(h, h_l, j, n_l) AVAILABLE (h, h_l, j, n_l) +#define CHECK_EOL (1) #define RET0_IF_0(a) if (!a) goto ret0 -#define AVAILABLE1_USES_J (0) #include "str-two-way.h" #undef strstr |