1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-12 06:57:33 +02:00
Files
coreutils/lib/xstrtod.h
Jim Meyering cf14c509f3 Use __P.
1995-11-15 21:59:55 +00:00

16 lines
309 B
C

#ifndef XSTRTOD_H
#define XSTRTOD_H 1
#ifndef __P
# if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
# define __P(args) args
# else
# define __P(args) ()
# endif /* GCC. */
#endif /* Not __P. */
int
xstrtod __P ((const char *str, const char **ptr, double *result));
#endif /* XSTRTOD_H */