diff options
author | Timm Bäder <mail@baedert.org> | 2016-08-21 15:43:29 +0200 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-05-03 14:47:14 +0100 |
commit | 5c79d65717447a09a378baf45cec4954c3bfb8cd (patch) | |
tree | 989d01c646a71800d45f3ed742387822c17deb00 | |
parent | 98b1075764bd998f4ebae1db2e2bb3fc7fa1bbf1 (diff) | |
download | gtk+-5c79d65717447a09a378baf45cec4954c3bfb8cd.tar.gz |
fallback-c89: Include config.h
It holds all the HAVE_<func> definitions.
-rw-r--r-- | gdk/fallback-c89.c | 2 | ||||
-rw-r--r-- | gtk/fallback-c89.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdk/fallback-c89.c b/gdk/fallback-c89.c index 4baf797f3c..e9adc5eba8 100644 --- a/gdk/fallback-c89.c +++ b/gdk/fallback-c89.c @@ -17,6 +17,8 @@ * License along with this library. If not, see <http://www.gnu.org/licenses/>. */ +#include "config.h" + #include <float.h> #ifndef HAVE_DECL_ISNAN diff --git a/gtk/fallback-c89.c b/gtk/fallback-c89.c index df28048feb..61536771ee 100644 --- a/gtk/fallback-c89.c +++ b/gtk/fallback-c89.c @@ -17,8 +17,10 @@ * License along with this library. If not, see <http://www.gnu.org/licenses/>. */ +#include "config.h" + #include <math.h> - + /* Workaround for round() for non-GCC/non-C99 compilers */ #ifndef HAVE_ROUND static inline double |