1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-12 12:00:21 +02:00

(PARAMS): Define.

Guard prototype with PARAMS.
This commit is contained in:
Jim Meyering
1997-09-14 03:36:38 +00:00
parent 12c9be75c3
commit 849a724b76
+9 -1
View File
@@ -7,6 +7,14 @@
# include <config.h>
# endif
int strverscmp (const char*, const char*);
# ifndef PARAMS
# if defined (__GNUC__) || __STDC__
# define PARAMS(args) args
# else
# define PARAMS(args) ()
# endif
# endif
int strverscmp PARAMS ((const char*, const char*));
#endif /* not STRVERSCMP_H_ */