view lib/xstrtod.h @ 742:cddc2692eef4

Define and use macro, PARAMS, not __P.
author Jim Meyering <jim@meyering.net>
date Thu, 17 Oct 1996 02:59:09 +0000
parents 2f2ee0189bb5
children cf3c93b52b9b
line wrap: on
line source

#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 */