diff options
Diffstat (limited to 'winsup/mingw/include/io.h')
-rw-r--r-- | winsup/mingw/include/io.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/mingw/include/io.h b/winsup/mingw/include/io.h index 66d59b5a8..c45d10650 100644 --- a/winsup/mingw/include/io.h +++ b/winsup/mingw/include/io.h @@ -226,6 +226,10 @@ _CRTIMP int __cdecl _open_osfhandle (long, int); _CRTIMP int __cdecl _pipe (int *, unsigned int, int); _CRTIMP int __cdecl _read (int, void*, unsigned int); _CRTIMP int __cdecl _setmode (int, int); +/* MS puts remove & rename (but not wide versions) in io.h as well + as in stdio.h. */ +_CRTIMP int __cdecl remove (const char*); +_CRTIMP int __cdecl rename (const char*, const char*); /* SH_... flags for nShFlags defined in share.h * Optional fourth argument is unsigned unPermissions */ |