Initial revision
This commit is contained in:
11
modules/src/system/access.c
Normal file
11
modules/src/system/access.c
Normal file
@@ -0,0 +1,11 @@
|
||||
/* $Header$ */
|
||||
|
||||
#include <system.h>
|
||||
|
||||
int
|
||||
sys_access(path, mode)
|
||||
char *path;
|
||||
int mode;
|
||||
{
|
||||
return access(path, mode) == 0;
|
||||
}
|
||||
Reference in New Issue
Block a user