summaryrefslogtreecommitdiff
path: root/libc/string/strcasestr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strcasestr.c')
-rw-r--r--libc/string/strcasestr.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/string/strcasestr.c b/libc/string/strcasestr.c
index 9467b7a75..6aaf45f3a 100644
--- a/libc/string/strcasestr.c
+++ b/libc/string/strcasestr.c
@@ -43,10 +43,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)
#define CANON_ELEMENT(c) TOLOWER (c)
#define CMP_FUNC(p1, p2, l) \
__strncasecmp ((const char *) (p1), (const char *) (p2), l)