Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mono/eglib/glib.h')
-rw-r--r--mono/eglib/glib.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/mono/eglib/glib.h b/mono/eglib/glib.h
index dbcc3997eff..2023e1a0548 100644
--- a/mono/eglib/glib.h
+++ b/mono/eglib/glib.h
@@ -31,6 +31,7 @@
#else
#include <eglib-config.h>
#endif
+#include <time.h>
// - Pointers should only be converted to or from pointer-sized integers.
// - Any size integer can be converted to any other size integer.
@@ -1520,4 +1521,9 @@ mono_qsort (void* base, size_t num, size_t size, int (*compare)(const void*, con
#define g_try_realloc(obj, size) (g_cast (monoeg_try_realloc ((obj), (size))))
#define g_memdup(mem, size) (g_cast (monoeg_g_memdup ((mem), (size))))
+#ifndef WIN32
+gint
+g_clock_nanosleep (clockid_t clockid, gint flags, const struct timespec *request, struct timespec *remain);
+#endif
+
#endif // __GLIB_H