mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-03-22 13:00:43 +02:00
16 lines
301 B
C
16 lines
301 B
C
#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 */
|