demos/gtk-demo/gtkfishbowl.c: Include gtk/fallback-c89.c

...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.
This commit is contained in:
Chun-wei Fan
2018-06-20 18:21:05 +08:00
parent eebf151f2a
commit f353ba3acb

View File

@ -19,7 +19,7 @@
#include "gtkfishbowl.h"
#include <math.h>
#include "gtk/fallback-c89.c"
typedef struct _GtkFishbowlPrivate GtkFishbowlPrivate;
typedef struct _GtkFishbowlChild GtkFishbowlChild;