home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 9
/
FreshFishVol9-CD2.bin
/
bbs
/
disk
/
mkisofs-1.00.7.lha
/
mkisofs
/
unix
/
misc.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-29
|
234b
|
15 lines
/* misc.c: */
#include <fcntl.h>
#include "unixlib.h"
/* chmod does not really change any permissions: */
int chmod (const char *p_pathname, int p_mode)
{
if (access ((char*) p_pathname, 0))
return -1;
else
return 0;
}