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:
authorJonathan Pryor <jpryor@novell.com>2008-02-05 18:48:54 +0300
committerJonathan Pryor <jpryor@novell.com>2008-02-05 18:48:54 +0300
commit3d2fbbde3d890322cf2763d928bc0290316ec884 (patch)
tree0cdab2aea32e4f503ea767390a632301361e3f5f /support
parentd3fcde9bdfc2c36977c097d7fc607f69f09fbd86 (diff)
* signal.c: Fix the Win32 build.
svn path=/trunk/mono/; revision=94897
Diffstat (limited to 'support')
-rw-r--r--support/ChangeLog4
-rw-r--r--support/signal.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/support/ChangeLog b/support/ChangeLog
index 0d65badbf8c..4e9419b6f4d 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,7 @@
+2008-02-05 Jonathan Pryor <jpryor@novell.com>
+
+ * signal.c: Fix the Win32 build.
+
2008-01-28 Jonathan Pryor <jpryor@novell.com>
* signal.c: Provide support functions for Mono.Unix.UnixSignal, which
diff --git a/support/signal.c b/support/signal.c
index 89509aa06e0..fd95bb14db8 100644
--- a/support/signal.c
+++ b/support/signal.c
@@ -11,6 +11,9 @@
#include <signal.h>
+#include "map.h"
+#include "mph.h"
+
#ifndef PLATFORM_WIN32
#include <sys/time.h>
#include <sys/types.h>
@@ -20,9 +23,6 @@
#include <pthread.h>
#endif
-#include "map.h"
-#include "mph.h"
-
G_BEGIN_DECLS
typedef void (*mph_sighandler_t)(int);