ack/plat/pc65oo2/libsys/creat.c

16 lines
199 B
C
Raw Permalink Normal View History

2024-02-22 15:13:52 +00:00
/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include "libsys.h"
int open(const char* path, int access, ...)
{
errno = EACCES;
return -1;
}