aboutsummaryrefslogtreecommitdiffstats
path: root/tools/shmtest.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tools/shmtest.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/shmtest.c b/tools/shmtest.c
index 5d8e01910..fb336bd2e 100644
--- a/tools/shmtest.c
+++ b/tools/shmtest.c
@@ -19,6 +19,13 @@
#include "ttyio.h"
#include "i18n.h"
+#ifdef __MINGW32__
+int main( int argc, char **argv )
+{
+ fprintf(stderr, "Sorry, not yet available for Windoze\n");
+ exit(1);
+}
+#else
static int serverpid = -1;
@@ -186,4 +193,4 @@ main(int argc, char **argv)
}
-
+#endif /* !__MINGW32__ */