Fix the function declaration error caught in the __eprintf test in configure.ac itself !
CFLAGS="${CFLAGS} -fno-common -Wall"
;;
* )
- CFLAGS="${CFLAGS} -Wall -ffast-math"
+ CFLAGS="${CFLAGS} -Wno-unused-parameter -Wno-unknown-pragmas -Wstrict-prototypes -Wpointer-arith -Wall -ffast-math"
;;
esac
;;
cat > conftest.$ac_ext <<EOF
#include "confdefs.h"
#include "assert.h"
-int main(argc)
- int argc;
-{
+int main(int argc, char **argv) {
assert(argc);
; return 0; }
EOF