diff options
Diffstat (limited to 'sysdeps/unix/mkfifo.c')
-rw-r--r-- | sysdeps/unix/mkfifo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/mkfifo.c b/sysdeps/unix/mkfifo.c index 776e981d93..4041f3a7be 100644 --- a/sysdeps/unix/mkfifo.c +++ b/sysdeps/unix/mkfifo.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify @@ -15,7 +15,6 @@ You should have received a copy of the GNU General Public License along with the GNU C Library; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <ansidecl.h> #include <errno.h> #include <stddef.h> #include <sys/stat.h> @@ -23,7 +22,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Create a named pipe (FIFO) named PATH with protections MODE. */ int -DEFUN(mkfifo, (path, mode), CONST char *path AND mode_t mode) +mkfifo (const char *path, mode_t mode) { - return __mknod (path, mode | S_IFIFO, 0); + dev_t dev = 0; + return __xmknod (_MKNOD_VER, path, mode | S_IFIFO, &dev); } |