blob: a59f627f00323402daa82b6a29f3f2ab06356502 [file] [log] [blame]
#include <errno.h>
int
_open(const char *name, int flags, int mode)
{
errno = ENOSYS;
return -1;
}