diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-16 18:36:33 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-16 18:36:33 -0400 |
commit | 9580b58360584384b994413aa24e751c5503e4b4 (patch) | |
tree | e78afc664e978a89809766b13bd2d0d36cc0c595 /gcc/protoize.c | |
parent | e9990579f163b8ee930585aaad074469aa8db384 (diff) | |
download | gcc-9580b58360584384b994413aa24e751c5503e4b4.zip gcc-9580b58360584384b994413aa24e751c5503e4b4.tar.gz gcc-9580b58360584384b994413aa24e751c5503e4b4.tar.bz2 |
Changed WINNT to _WIN32.
From-SVN: r9732
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index bc28ad1..920e7a7 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -64,7 +64,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <errno.h> #include <sys/types.h> #include <sys/stat.h> -#ifndef WINNT +#ifndef _WIN32 #if defined(POSIX) || defined(CONCURRENT) #include <dirent.h> #else @@ -169,7 +169,7 @@ typedef char * const_pointer_type; typedef void voidfn (); extern VOLATILE voidfn abort; #endif -#ifndef WINNT +#ifndef _WIN32 extern int kill (); #endif extern int creat (); |