1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-13 00:14:26 +02:00
Files
coreutils/lib/strverscmp.h
Jim Meyering 849a724b76 (PARAMS): Define.
Guard prototype with PARAMS.
1997-09-14 03:36:38 +00:00

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_ */