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

index 34cac69d449cfddb6bd679cdfaaf55c66cfc604b..5fd441cf2101e5850e6fa0cb0fac1db68650712b 100644 (file)
@@ -40,8 +40,10 @@ AT_DATA([calc.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