mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-02 17:00:19 +00:00
gtk/gtkapplication.c: Don't Include unistd.h Unconditionally
This header, which is not universally available, is accidently made to be included unconditionally during the refactoring of gtkapplication.c, so restore the #ifdef check.
This commit is contained in:
parent
66381cfd5d
commit
adb0d2adac
@ -23,7 +23,11 @@
|
||||
#include "gtkapplication.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "gtkapplicationprivate.h"
|
||||
|
Loading…
Reference in New Issue
Block a user