mirror of
git://git.sv.gnu.org/coreutils
synced 2026-05-29 03:54:32 -04:00
849a724b76
Guard prototype with PARAMS.
21 lines
386 B
C
21 lines
386 B
C
/* strverscmp.h -- compare strings holding indices/version numbers */
|
|
|
|
#ifndef STRVERSCMP_H_
|
|
# define STRVERSCMP_H_
|
|
|
|
# if HAVE_CONFIG_H
|
|
# include <config.h>
|
|
# endif
|
|
|
|
# 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_ */
|