Files
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

9 lines
141 B
C

/* chmod - change mode: NOP under CP/M */
#include <portab.h>
WORD chmod(name,mode)
BYTE *name;
WORD mode;
{
return(access(name,mode));
}