* include/io.h: Add access declaration.

This commit is contained in:
Christopher Faylor 2001-09-17 21:29:19 +00:00
parent 8238a68bb2
commit c98b577d40
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Mon Sep 17 17:29:25 2001 Christopher Faylor <cgf@cygnus.com>
* include/io.h: Add access declaration.
Mon Sep 17 14:04:27 2001 Christopher Faylor <cgf@cygnus.com> Mon Sep 17 14:04:27 2001 Christopher Faylor <cgf@cygnus.com>
* syscalls.cc (rmdir): Set cwd to some other location if attempting to * syscalls.cc (rmdir): Set cwd to some other location if attempting to

View File

@ -20,6 +20,7 @@ extern "C" {
*/ */
extern long get_osfhandle(int); extern long get_osfhandle(int);
extern int setmode (int __fd, int __mode); extern int setmode (int __fd, int __mode);
int access(const char *__path, int __amode);
#ifdef __cplusplus #ifdef __cplusplus
}; };