Author: jhoblitt
Date: Sat Nov 5 13:24:37 2005
New Revision: 9803
Modified:
trunk/config/auto/alignptrs/test_c.in
Log:
fix a K&Rism in config/auto/alignptrs/test_c.in, patch from Nick Glencross
Modified: trunk/config/auto/alignptrs/test_c.in
==============================================================================
--- trunk/config/auto/alignptrs/test_c.in (original)
+++ trunk/config/auto/alignptrs/test_c.in Sat Nov 5 13:24:37 2005
@@ -10,7 +10,7 @@
#include <signal.h>
/* Try to catch bus errors */
#ifdef SIGBUS
-void bletch(s) int s; { exit(1); }
+void bletch(int s) { exit(1); }
#endif
int main(int argc, char **argv) {