blob: 59a4166755946998e6fee53e7808735c006a0c48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$NetBSD: patch-ab,v 1.1.1.1 1999/08/04 17:00:27 rh Exp $
--- tn5250.cc.orig Mon Apr 5 18:25:45 1999
+++ tn5250.cc Wed Aug 4 15:20:55 1999
@@ -18,7 +18,12 @@
#include "config.h"
#include <stdlib.h>
+#include <sys/param.h>
+#if (defined(BSD) && BSD >= 199306)
+#include <unistd.h>
+#else
#include <getopt.h>
+#endif
#include <errno.h>
#include "buffer.h"
|