Message-Id: <p
04320400b649771b9797@[192.168.1.4]>
Patch to catch a core dump in the Configure va_copy test.
p4raw-id: //depot/perl@7928
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Sun Nov 26 20:19:22 EET 2000 [metaconfig 3.0 PL70]
+# Generated on Wed Nov 29 18:47:12 EET 2000 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.org)
cat >/tmp/c1$$ <<EOF
$cat >try.c <<EOCP
#include <stdarg.h>
#include <stdio.h>
+#$i_stdlib I_STDLIB
+#ifdef I_STDLIB
+#include <stdlib.h>
+#endif
+#include <signal.h>
int
ivfprintf(FILE *f, const char *fmt, va_list *valp)
int
main(int ac, char **av)
{
+ signal(SIGSEGV, exit);
+
myprintf("%s%cs all right, then\n", "that", '\'');
exit(0);
}