diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 04:06:04 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 04:06:04 +0000 |
commit | 07e3f06934aedd818ed70af9de397c3b00228916 (patch) | |
tree | e48c67928ea28a1d8d8b6597885d702fc67c7584 /lib | |
parent | 177f72974da00727d03d2e86c62e58f39f0e7e77 (diff) | |
download | FreeBSD-src-07e3f06934aedd818ed70af9de397c3b00228916.zip FreeBSD-src-07e3f06934aedd818ed70af9de397c3b00228916.tar.gz |
Add missing include to eliminate -Wmissing-prototypes warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gdtoa/_ldtoa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/gdtoa/_ldtoa.c b/lib/libc/gdtoa/_ldtoa.c index 60c6b22..00d7601 100644 --- a/lib/libc/gdtoa/_ldtoa.c +++ b/lib/libc/gdtoa/_ldtoa.c @@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$"); #include <limits.h> #include <math.h> #include <stdlib.h> +#include "../stdio/floatio.h" #include "fpmath.h" #include "gdtoaimp.h" |