diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-18 07:48:30 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-18 07:48:30 +0000 |
commit | 3ed2170b6430b2a421dd6411504ae983a4fac65a (patch) | |
tree | 8cecc113d3d471096d92aca393fa12d212f7bf96 /lib | |
parent | 30b2b9caaf5f8dca2dc506e1338ee30160dfcf51 (diff) | |
download | coreutils-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')
-rw-r--r-- | lib/filemode.h | 14 |
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 |