projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0a6f4f
)
(PARAMS): Define and use.
author
Jim Meyering
<jim@meyering.net>
Sun, 16 Aug 1998 15:26:20 +0000
(15:26 +0000)
committer
Jim Meyering
<jim@meyering.net>
Sun, 16 Aug 1998 15:26:20 +0000
(15:26 +0000)
lib/filemode.h
patch
|
blob
|
history
diff --git
a/lib/filemode.h
b/lib/filemode.h
index 331a5d624f90bd638f2bc3d596dcba31bff7ca0e..162e07a0da365fb91bfee6cb7a6b571f5c8d91b6 100644
(file)
--- a/
lib/filemode.h
+++ b/
lib/filemode.h
@@
-1
+1,9
@@
-void mode_string (short unsigned int mode, char *str);
+#ifndef PARAMS
+# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
+# define PARAMS(Args) Args
+# else
+# define PARAMS(Args) ()
+# endif
+#endif
+
+void mode_string PARAMS ((short unsigned int mode, char *str));