diff options
Diffstat (limited to 'sysdeps/posix/mkfifoat.c')
-rw-r--r-- | sysdeps/posix/mkfifoat.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sysdeps/posix/mkfifoat.c b/sysdeps/posix/mkfifoat.c index c7770eb60d..c929b1bc55 100644 --- a/sysdeps/posix/mkfifoat.c +++ b/sysdeps/posix/mkfifoat.c @@ -21,10 +21,7 @@ /* Create a new FIFO with permission bits MODE. But interpret relative PATH names relative to the directory associated with FD. */ int -mkfifoat (fd, file, mode) - int fd; - const char *file; - mode_t mode; +mkfifoat (int fd, const char *file, mode_t mode) { dev_t dev = 0; return __xmknodat (_MKNOD_VER, fd, file, mode | S_IFIFO, &dev); |