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