summaryrefslogtreecommitdiff
path: root/lib/filemode.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-18 07:48:30 +0000
committerJim Meyering <jim@meyering.net>2003-06-18 07:48:30 +0000
commit3ed2170b6430b2a421dd6411504ae983a4fac65a (patch)
tree8cecc113d3d471096d92aca393fa12d212f7bf96 /lib/filemode.h
parent30b2b9caaf5f8dca2dc506e1338ee30160dfcf51 (diff)
downloadcoreutils-3ed2170b6430b2a421dd6411504ae983a4fac65a.tar.xz
(PARAMS): Remove. All uses removed.
Do not include config.h; no longer needed. Anyway, config.h should always be included before any other file.
Diffstat (limited to 'lib/filemode.h')
-rw-r--r--lib/filemode.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/lib/filemode.h b/lib/filemode.h
index 5b19db236..f6b266ec5 100644
--- a/lib/filemode.h
+++ b/lib/filemode.h
@@ -1,19 +1,7 @@
#ifndef FILEMODE_H_
-# if HAVE_CONFIG_H
-# include <config.h>
-# endif
-
# include <sys/types.h>
-# ifndef PARAMS
-# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
-# define PARAMS(Args) Args
-# else
-# define PARAMS(Args) ()
-# endif
-# endif
-
-void mode_string PARAMS ((mode_t mode, char *str));
+void mode_string (mode_t mode, char *str);
#endif