summaryrefslogtreecommitdiff
path: root/x2p
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-02-16 23:03:31 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-02-16 23:03:31 +0000
commit3730b96e60864694cf0c222f80e6ed2b3c27335b (patch)
treef70acb049af97a2aa37058987b4f89263fd7c9c4 /x2p
parent5684ad5c0ea74ae5ecd32ff6f6122e8335adfd9c (diff)
downloadperl-3730b96e60864694cf0c222f80e6ed2b3c27335b.tar.gz
[win32] fix mingw32 gcc 2.8.0 build (DLLs generated seem to be broken
in this version of gcc!) p4raw-id: //depot/win32/perl@529
Diffstat (limited to 'x2p')
-rw-r--r--x2p/a2p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/x2p/a2p.h b/x2p/a2p.h
index a7cbcb68b3..2db5f36ebc 100644
--- a/x2p/a2p.h
+++ b/x2p/a2p.h
@@ -20,6 +20,10 @@
# include "../config.h"
#endif
+#if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
+# define STANDARD_C 1
+#endif
+
#ifdef WIN32
#undef USE_STDIO_PTR /* XXX fast gets won't work, must investigate */
# ifndef STANDARD_C
@@ -40,10 +44,6 @@
# endif
#endif
-#if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
-# define STANDARD_C 1
-#endif
-
/* Use all the "standard" definitions? */
#if defined(STANDARD_C) && defined(I_STDLIB)
# include <stdlib.h>