diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-11-29 01:35:45 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-11-29 01:35:45 +0000 |
commit | c69f112c145fabe210a7e2c5c2406baeea71af2f (patch) | |
tree | f99acaeffc5cdd4e8b5cd9931d8e74da85deb578 /XSUB.h | |
parent | 900941544544b9ca5ecbb5e1f24f9c23b3635b68 (diff) | |
download | perl-c69f112c145fabe210a7e2c5c2406baeea71af2f.tar.gz |
GCC + Threads on Win32 - best gcc results yet
p4raw-id: //depot/ansiperl@331
Diffstat (limited to 'XSUB.h')
-rw-r--r-- | XSUB.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,7 +7,8 @@ #endif #if defined(WIN32) && defined(__GNUC__) -#define FORCE_ARG_STRING(x) #x +#define STRINGIFY_THINGY(x) #x +#define FORCE_ARG_STRING(x) STRINGIFY_THINGY(x) #else #define FORCE_ARG_STRING(x) x #endif |