blob: 0627e99d520f8a0cb45b98b1df59e9710bb88fc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- usercode/mikmodux.c.orig Sat Mar 21 14:52:24 1998
+++ usercode/mikmodux.c Sat Jul 4 02:12:26 1998
@@ -33,10 +33,10 @@
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
-#ifndef __FreeBSD__
-#include <curses.h>
-#else
+#if defined(__FreeBSD__) || defined(__NetBSD__)
#include <ncurses.h>
+#else
+#include <curses.h>
#endif
#if (!defined(SGI))
#include <fnmatch.h>
|