revert erroneous checkin
This commit is contained in:
parent
894c677711
commit
325965583f
|
@ -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? */
|
||||||
|
|
Loading…
Reference in New Issue