1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-05-25 15:00:41 +02:00

tests: don't #include <sys/resource.h> on win32

This commit is contained in:
Ryan Lortie 2011-10-12 23:25:12 -04:00
parent 45736d33bb
commit f970dfc734

@ -23,12 +23,15 @@
#include <config.h> #include <config.h>
#include <sys/time.h> #include <sys/time.h>
#include <sys/resource.h>
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
#include <glib.h> #include <glib.h>
#ifndef G_OS_WIN32
#include <sys/resource.h>
#endif
static gpointer static gpointer
thread1_func (gpointer data) thread1_func (gpointer data)
{ {