diff options
author | Bruno Haible <bruno@clisp.org> | 2010-11-27 18:10:39 +0100 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2010-11-27 18:10:39 +0100 |
commit | 5ea438b5d354059846385a90f2f7f39e55d64bc4 (patch) | |
tree | 908a4fd12befaa52c2621a96f8b7d20419e93fc8 /lib/ftoastr.c | |
parent | 9fbfb9888f4ca4b7f74b900be4ebd6a8469f1613 (diff) | |
download | gnulib-5ea438b5d354059846385a90f2f7f39e55d64bc4.tar.gz |
ftoastr: Fix compilation error on Solaris.
* lib/ftoastr.c: Include <config.h>.
Diffstat (limited to 'lib/ftoastr.c')
-rw-r--r-- | lib/ftoastr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ftoastr.c b/lib/ftoastr.c index 6c5ea574c3..a55b24eb94 100644 --- a/lib/ftoastr.c +++ b/lib/ftoastr.c @@ -25,6 +25,8 @@ This code relies on sprintf, strtod, etc. operating accurately; otherwise, the resulting strings could be inaccurate or too long. */ +#include <config.h> + #include "ftoastr.h" #include "intprops.h" |