blob: 3caf7b5c560502fa8c17facf6e8d3e2fed335609 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
$NetBSD: patch-ac,v 1.4 2007/12/14 12:46:22 bjs Exp $
--- src/getaddrinfo.c.orig 2007-08-28 12:36:33.000000000 -0400
+++ src/getaddrinfo.c
@@ -99,7 +99,13 @@
#endif
#include <sys/types.h>
+#if defined(HAVE_NBCOMPAT_H)
+#include <nbcompat/cdefs.h>
+#include <nbcompat/config.h>
+#include <nbcompat/stdio.h>
+#else
#include <stdio.h>
+#endif
#if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
#include <string.h>
|