blob: d065d733b9f55647c3707f5d53c1322802594bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ai,v 1.3 2001/02/08 19:11:38 jlam Exp $
--- src/mtest/mtest.c.orig Tue Oct 24 19:16:33 2000
+++ src/mtest/mtest.c
@@ -36,6 +36,11 @@
/* Excellent reasons to hate ifdefs, and why my real code never uses them */
+#if defined(__NetBSD__) /* NetBSD no longer defines unix. */
+# undef unix
+# define unix 1
+#endif
+
#ifndef unix
# define unix 0
#endif
|