This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlguts: sprintf %p now works
[perl5.git] / cflags.SH
index fd2a2c2..f1bcd6c 100755 (executable)
--- a/cflags.SH
+++ b/cflags.SH
@@ -74,13 +74,9 @@ cat >_cflags.c <<__EOT__
 /* Just in case the inclusion of perl.h did not
  * pull in enough system headers, let's try again. */
 #include <stdlib.h>
-#ifdef I_STDDEF
 #include <stddef.h>
-#endif
 #include <stdarg.h>
-#ifdef I_LIMITS
 #include <limits.h>
-#endif
 #ifdef I_DIRENT
 #include <dirent.h>
 #endif
@@ -160,7 +156,7 @@ esac
 
 case "$gccversion" in
 '') ;;
-[12]*) ;; # gcc versions 1 (gasp!) and 2 are not good for this.
+[12].*) ;; # gcc versions 1 (gasp!) and 2 are not good for this.
 Intel*) ;; # # Is that you, Intel C++?
 #
 # NOTE 1: the -std=c89 without -pedantic is a bit pointless.