]> git.ozlabs.org Git - ccan/blobdiff - ccan/str/debug.c
opt: add allocator setting.
[ccan] / ccan / str / debug.c
index 42d19f8197f9ff03795397843a1385e19a1a225f..8c519442d792a77c1339a8de2fc403920b074b12 100644 (file)
@@ -1,4 +1,4 @@
-/* Licensed under LGPLv2.1+ - see LICENSE file for details */
+/* CC0 (Public domain) - see LICENSE file for details */
 #include "config.h"
 #include <ccan/str/str_debug.h>
 #include <assert.h>
@@ -87,6 +87,9 @@ int str_isxdigit(int i)
        return isxdigit(i);
 }
 
+#undef strstr
+#undef strchr
+#undef strrchr
 
 char *str_strstr(const char *haystack, const char *needle)
 {