diff options
Diffstat (limited to 'winsup/mingw/include/io.h')
-rw-r--r-- | winsup/mingw/include/io.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/winsup/mingw/include/io.h b/winsup/mingw/include/io.h index 50b395ac5..433aa57ab 100644 --- a/winsup/mingw/include/io.h +++ b/winsup/mingw/include/io.h @@ -23,9 +23,6 @@ * $Date$ * */ - -#ifndef __STRICT_ANSI__ - #ifndef _IO_H_ #define _IO_H_ @@ -35,7 +32,6 @@ /* MSVC's io.h contains the stuff from dir.h, so I will too. * NOTE: This also defines off_t, the file offset type, through * an inclusion of sys/types.h */ -#ifndef __STRICT_ANSI__ #include <sys/types.h> /* To get time_t. */ @@ -162,8 +158,6 @@ _CRTIMP int __cdecl chmod (const char*, int); #endif /* Not RC_INVOKED */ -#endif /* Not __STRICT_ANSI__ */ - /* TODO: Maximum number of open handles has not been tested, I just set * it the same as FOPEN_MAX. */ #define HANDLE_MAX FOPEN_MAX @@ -299,6 +293,3 @@ wchar_t * wmktemp(wchar_t *); #endif /* Not RC_INVOKED */ #endif /* _IO_H_ not defined */ - -#endif /* Not strict ANSI */ - |