source:
trunk/minix/lib/posix/_access.c@
10
Last change on this file since 10 was 9, checked in by , 13 years ago | |
---|---|
File size: 215 bytes |
Line | |
---|---|
1 | #include <lib.h> |
2 | #define access _access |
3 | #include <unistd.h> |
4 | |
5 | PUBLIC int access(name, mode) |
6 | _CONST char *name; |
7 | int mode; |
8 | { |
9 | message m; |
10 | |
11 | m.m3_i2 = mode; |
12 | _loadname(name, &m); |
13 | return(_syscall(FS, ACCESS, &m)); |
14 | } |
Note:
See TracBrowser
for help on using the repository browser.