blob: 606cf37bb3d158f4a598cf9c2766399a7cd4259f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- conf.h.orig Thu Sep 19 20:04:29 1996
+++ conf.h Mon Sep 23 21:40:25 1996
@@ -27,6 +27,10 @@
*
*/
+#if defined(_HAVE_PARAM_H)
+#include <sys/param.h>
+#endif
+
#ifndef _conf_h_
#define _conf_h_
@@ -56,11 +60,14 @@
#endif
#endif /* unixware */
+#if (defined(BSD) && (BSD >= 199306))
+#include <stdlib.h>
+#include <sys/types.h>
#if defined(BSDI)
#include <sys/types.h>
#include <machine/inline.h>
#include <machine/endian.h>
-#include <stdlib.h>
+#endif
#else /* BSDI */
#include <malloc.h>
#endif /* BSDI */
|