blob: 4de31a9a7c2765c5326fce56481deddf1d833244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ac,v 1.1 2002/06/07 17:48:39 atatat Exp $
Need to include sys/types.h so that pid_t is a defined type for
sys/select.h.
--- src/internal.h.orig Sat Sep 16 20:24:24 2000
+++ src/internal.h
@@ -30,6 +30,8 @@
#ifndef ADNS_INTERNAL_H_INCLUDED
#define ADNS_INTERNAL_H_INCLUDED
+#include <sys/types.h>
+
#include "config.h"
typedef unsigned char byte;
|