diff options
author | Jim Meyering <jim@meyering.net> | 2003-11-29 12:01:51 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-11-29 12:01:51 +0000 |
commit | 71109d9261f6a839ea6916c82fdd0bf7f2ef9099 (patch) | |
tree | 04b2fdce9f5cdd7bb882cd71036370758b05cf36 /lib | |
parent | 48b933cbd28fed27b994fdd33347603b9086bf38 (diff) | |
download | coreutils-71109d9261f6a839ea6916c82fdd0bf7f2ef9099.tar.xz |
Include "xalloc.h", for decl of xstrdup.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/c-strtod.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/c-strtod.c b/lib/c-strtod.c index b3ce2b43a..ed5be49ab 100644 --- a/lib/c-strtod.c +++ b/lib/c-strtod.c @@ -23,6 +23,8 @@ #include <locale.h> #include <stdlib.h> +#include "xalloc.h" + double c_strtod (char const *nptr, char **endptr) { |