revert erroneous checkin

This commit is contained in:
Christopher Faylor 2004-07-20 16:01:39 +00:00
parent 894c677711
commit 325965583f
1 changed files with 3 additions and 2 deletions

View File

@ -1939,9 +1939,10 @@ mknod (const char *_path, mode_t mode, __dev16_t dev)
} }
extern "C" int extern "C" int
mkfifo (const char *path, mode_t mode) mkfifo (const char *_path, mode_t mode)
{ {
return mknod32 (path, (mode & ~S_IFMT) | S_IFIFO, 0); set_errno (ENOSYS); // FIXME
return -1;
} }
/* seteuid: standards? */ /* seteuid: standards? */