summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mknod.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mknod.c b/src/mknod.c
index 0bda22073..43a1b9dcc 100644
--- a/src/mknod.c
+++ b/src/mknod.c
@@ -208,12 +208,8 @@ main (int argc, char **argv)
break;
case 'p': /* `pipe' */
-#ifndef S_ISFIFO
- error (EXIT_FAILURE, 0, _("fifo files not supported"));
-#else
if (mkfifo (argv[optind], newmode) != 0)
error (EXIT_FAILURE, errno, "%s", quote (argv[optind]));
-#endif
break;
default: