]> git.saurik.com Git - bison.git/commitdiff
(%nonassoc and eof): #undef memcmp and realloc.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 19 Oct 2002 01:09:36 +0000 (01:09 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 19 Oct 2002 01:09:36 +0000 (01:09 +0000)
tests/conflicts.at

index 3147365623d8e35bd3bba31ae3ed4bc89fff0391..ee5fd0267774050705320c26f20ae0b0ad9d8d4a 100644 (file)
@@ -54,8 +54,10 @@ AT_DATA([input.y],
 [[
 %{
 #include <config.h>
-/* We don't need a perfect malloc for these tests. */
+/* We don't need perfect functions for these tests. */
 #undef malloc
+#undef memcmp
+#undef realloc
 #include <stdio.h>
 
 #if STDC_HEADERS