Add missing include

Some X11-related system header is leaking stdlib.h, so when we disable
the X11 backend we get a compiler warning for atol().
This commit is contained in:
Emmanuele Bassi 2015-06-10 12:28:59 +01:00
parent 896e43cbd5
commit a1c4acf227

View File

@ -34,6 +34,8 @@
#include "clutter-stage-private.h"
#include "clutter-private.h"
#include <stdlib.h>
#define DEFAULT_FONT_NAME "Sans 12"
#define CLUTTER_SETTINGS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CLUTTER_TYPE_SETTINGS, ClutterSettingsClass))