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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2022-03-22 20:43:48 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2022-03-22 20:43:48 +0300
commit4b5e2591eb299eb34d60b5217b14c1ad9f11e238 (patch)
treea05f35afda326b1ae48c5f3425c6e70c5d1bcb97
parent71ad7a0460627eb899bc54cfe33a2584419f75f8 (diff)
[eglib] Fix a difference with the 2020-02 branch
-rw-r--r--mono/eglib/glib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mono/eglib/glib.h b/mono/eglib/glib.h
index 2023e1a0548..0afeb672350 100644
--- a/mono/eglib/glib.h
+++ b/mono/eglib/glib.h
@@ -1521,7 +1521,7 @@ 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
+#ifndef G_OS_WIN32
gint
g_clock_nanosleep (clockid_t clockid, gint flags, const struct timespec *request, struct timespec *remain);
#endif