diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-11-27 17:46:30 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-11-27 17:46:30 +0000 |
commit | a835ef8a5ef2441baebe4910667c49a7be441c88 (patch) | |
tree | 16ffce3090d1f147fe5cc67a52c0eae38c037e1b /win32/win32iop.h | |
parent | c6af95f61decbba4d08b75e0ff2fadd33009bd72 (diff) | |
download | perl-a835ef8a5ef2441baebe4910667c49a7be441c88.tar.gz |
Add files and tweak others to get 'native' Mingw32 gcc port as
far as building miniperl and perl.dll (but not import lib yet)
Seems to lack popen()/pclose() and fcloseall() and fflushall().
Also only CRTDLL not MCRTDLL so threading is probably not
possible yet.
Had to mess with win32iop.h's placement as we need __attribute__
to get STDCALL, and #define of printf messes up proto.h
p4raw-id: //depot/ansiperl@325
Diffstat (limited to 'win32/win32iop.h')
-rw-r--r-- | win32/win32iop.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/win32iop.h b/win32/win32iop.h index 533370e99e..c862cada26 100644 --- a/win32/win32iop.h +++ b/win32/win32iop.h @@ -170,6 +170,7 @@ END_EXTERN_C #define fread(buf,size,count,f) win32_fread(buf,size,count,f) #define fwrite(buf,size,count,f) win32_fwrite(buf,size,count,f) #define fopen win32_fopen +#undef fdopen #define fdopen win32_fdopen #define freopen win32_freopen #define fclose(f) win32_fclose(f) |