mirror of
https://github.com/coreutils/coreutils.git
synced 2024-11-26 03:13:42 +08: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 */
|