1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-05-11 13:01:08 +02:00
Files
coreutils/lib/xstrtod.h

16 lines
301 B
C
Raw Normal View History

1995-11-15 21:59:20 +00:00
#ifndef XSTRTOD_H
1996-07-15 03:56:06 +00:00
# define XSTRTOD_H 1
1995-11-15 21:59:20 +00:00
# ifndef PARAMS
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define PARAMS(Args) Args
# else
# define PARAMS(Args) ()
# endif
# endif
1995-11-15 21:59:20 +00:00
int
1996-10-17 02:59:09 +00:00
xstrtod PARAMS ((const char *str, const char **ptr, double *result));
1995-11-15 21:59:20 +00:00
1996-10-10 04:15:54 +00:00
#endif /* not XSTRTOD_H */