diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-25 10:25:00 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-25 10:25:00 +0000 |
commit | 327c366704cde8b5db1271437c24407685d88228 (patch) | |
tree | 6cf396353f712e79faea59cc39239aa5c44c5376 /win32/win32.h | |
parent | 5ff3f7a4e03a6b103d9e628865398e498e9a7968 (diff) | |
download | perl-327c366704cde8b5db1271437c24407685d88228.tar.gz |
update template config.sh, add new config vars to win32 stuff
p4raw-id: //depot/perl@1890
Diffstat (limited to 'win32/win32.h')
-rw-r--r-- | win32/win32.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/win32/win32.h b/win32/win32.h index 0a3f19bb1c..8b789fd180 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -123,6 +123,14 @@ struct tms { #define FILE_SHARE_DELETE 0x00000004 #endif +/* access() mode bits */ +#ifndef R_OK +# define R_OK 4 +# define W_OK 2 +# define X_OK 1 +# define F_OK 0 +#endif + /* Compiler-specific stuff. */ #ifdef __BORLANDC__ /* Borland C++ */ @@ -144,6 +152,7 @@ struct tms { #pragma warn -use /* "'foo' is declared but never used" */ #pragma warn -csu /* "comparing signed and unsigned values" */ #pragma warn -pro /* "call to function with no prototype" */ +#pragma warn -stu /* "undefined structure 'foo'" */ #define USE_RTL_WAIT /* Borland has a working wait() */ |