mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-09 21:53:55 +02:00
15 lines
259 B
C
15 lines
259 B
C
#ifndef XSTRTOD_H
|
|
# define XSTRTOD_H 1
|
|
|
|
#undef PARAMS
|
|
#if defined (__STDC__) && __STDC__
|
|
# define PARAMS(Args) Args
|
|
#else
|
|
# define PARAMS(Args) ()
|
|
#endif
|
|
|
|
int
|
|
xstrtod PARAMS ((const char *str, const char **ptr, double *result));
|
|
|
|
#endif /* not XSTRTOD_H */
|