diff options
Diffstat (limited to 'gcc/config/winnt/oldnames.c')
-rwxr-xr-x | gcc/config/winnt/oldnames.c | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/gcc/config/winnt/oldnames.c b/gcc/config/winnt/oldnames.c deleted file mode 100755 index b7a1779..0000000 --- a/gcc/config/winnt/oldnames.c +++ /dev/null @@ -1,47 +0,0 @@ -int -access (const char *path, int mode) -{ - return _access (path, mode); -} - -int -chmod (const char *filename, int pmode) -{ - return _chmod (filename, pmode); -} - -int -close (int handle) -{ - return _close (handle); -} - -char * -mktemp (char *template) -{ - return (char *) _mktemp (template); -} - -int -open (const char *filename, int oflag, int pmode) -{ - return _open (filename, oflag, pmode); -} - -int -read (int handle, void *buffer, unsigned int count) -{ - return _read (handle, buffer, count); -} - -int -unlink (const char *path) -{ - return _unlink (path); -} - -int -write (int handle, void *buffer, unsigned int count) -{ - return _write (handle, buffer, count); -} |