summaryrefslogtreecommitdiff
path: root/src/system.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-06-02 05:17:24 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-06-02 05:17:24 +0000
commit97603a5d2adc889186f2934624a95c92dbfa2fdd (patch)
treebd6c100158b2e78129acad867c008a89ea00418d /src/system.h
parent6a3bde8957f130a2fcc9b2cad5699e7dcf8c7e13 (diff)
downloadcoreutils-97603a5d2adc889186f2934624a95c92dbfa2fdd.tar.xz
Don't use "path" or "filename".
Diffstat (limited to 'src/system.h')
-rw-r--r--src/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/system.h b/src/system.h
index 307f5ab5b..51d5361e9 100644
--- a/src/system.h
+++ b/src/system.h
@@ -1,4 +1,4 @@
-/* system-dependent definitions for fileutils, textutils, and sh-utils packages.
+/* system-dependent definitions for coreutils
Copyright (C) 1989, 1991-2005 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
@@ -28,7 +28,7 @@ you must include <sys/types.h> before including this file
#include <sys/stat.h>
#if !defined HAVE_MKFIFO
-# define mkfifo(path, mode) (mknod ((path), (mode) | S_IFIFO, 0))
+# define mkfifo(name, mode) mknod (name, (mode) | S_IFIFO, 0)
#endif
#if HAVE_SYS_PARAM_H