Tag
Hash :
83bacbc7
Author :
Date :
1998-01-16T08:51:39
Make PARAMS-defining conditionals consistent.
#ifndef XSTRTOD_H
# define XSTRTOD_H 1
# ifndef PARAMS
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define PARAMS(Args) Args
# else
# define PARAMS(Args) ()
# endif
# endif
int
xstrtod PARAMS ((const char *str, const char **ptr, double *result));
#endif /* not XSTRTOD_H */