diff options
author | Pierre Joye <pierre.php@gmail.com> | 2013-04-21 15:48:59 +0200 |
---|---|---|
committer | Pierre Joye <pierre.php@gmail.com> | 2013-04-21 15:48:59 +0200 |
commit | 364a10a2825853b2c67645ce90f9ff19d01991ec (patch) | |
tree | 5fd6a1a3fd98b7313f35cbdd61dc988df710148a /src/gdft.c | |
parent | 084567917e43795a9c757c2525de9a41a712dc96 (diff) | |
download | libgd-364a10a2825853b2c67645ce90f9ff19d01991ec.tar.gz |
#45, fix gdImageStringFT and other functions in gdft.c not being exposed correctly. Include config.h 1st helps :)
Diffstat (limited to 'src/gdft.c')
-rw-r--r-- | src/gdft.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -11,14 +11,14 @@ #include <string.h> #include <math.h> -#include "gd.h" -#include "gdhelpers.h" -#include "entities.h" - #ifdef HAVE_CONFIG_H #include "config.h" #endif +#include "gd.h" +#include "gdhelpers.h" +#include "entities.h" + /* 2.0.10: WIN32, not MSWIN32 */ #if !defined(WIN32) && !defined(_WIN32_WCE) #include <unistd.h> |