summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2018-06-20 18:21:05 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2018-06-20 18:21:05 +0800
commit91738fe6c832569625099b04a9f75d8bbe1debd8 (patch)
tree87edd78487e420486496f94c5f53724ffcfc87d0
parentb319a702b61039f9bae93d2cafc6696dfe219e66 (diff)
downloadgtk+-324.win32.build.tar.gz
demos/gtk-demo/gtkfishbowl.c: Include gtk/fallback-c89.c324.win32.build
...in place of math.h, as we are using round(), which is possibly not provided by the compiler since we don't require a C99 compiler in GTK+-3.x and gtk/fallback-c89.c does include math.h anyways.
-rw-r--r--demos/gtk-demo/gtkfishbowl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/gtk-demo/gtkfishbowl.c b/demos/gtk-demo/gtkfishbowl.c
index 5101210fd1..0b17c42fc2 100644
--- a/demos/gtk-demo/gtkfishbowl.c
+++ b/demos/gtk-demo/gtkfishbowl.c
@@ -19,7 +19,7 @@
#include "gtkfishbowl.h"
-#include <math.h>
+#include "gtk/fallback-c89.c"
typedef struct _GtkFishbowlPrivate GtkFishbowlPrivate;
typedef struct _GtkFishbowlChild GtkFishbowlChild;