diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-16 23:03:31 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-16 23:03:31 +0000 |
commit | 3730b96e60864694cf0c222f80e6ed2b3c27335b (patch) | |
tree | f70acb049af97a2aa37058987b4f89263fd7c9c4 /x2p | |
parent | 5684ad5c0ea74ae5ecd32ff6f6122e8335adfd9c (diff) | |
download | perl-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.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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> |