summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorguenther <>2011-05-01 04:27:07 +0000
committerguenther <>2011-05-01 04:27:07 +0000
commit53f2cc7dd4fcd28a971a5d0bc9784393cf17d561 (patch)
tree5b79912e01195d1f2182eb860d8a3332c641cd16
parent538546430fb4daf98c2b8ddd5153747f529e4e5c (diff)
downloadopenbsd-53f2cc7dd4fcd28a971a5d0bc9784393cf17d561.tar.gz
openbsd-53f2cc7dd4fcd28a971a5d0bc9784393cf17d561.tar.bz2
openbsd-53f2cc7dd4fcd28a971a5d0bc9784393cf17d561.zip
Pull in <string.h> for memset()
-rw-r--r--src/regress/lib/libc/netdb/netdb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/regress/lib/libc/netdb/netdb.c b/src/regress/lib/libc/netdb/netdb.c
index 0082c1bd1b..fabb3ee4e1 100644
--- a/src/regress/lib/libc/netdb/netdb.c
+++ b/src/regress/lib/libc/netdb/netdb.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: netdb.c,v 1.1 2004/10/25 15:10:36 otto Exp $ */ 1/* $OpenBSD: netdb.c,v 1.2 2011/05/01 04:27:07 guenther Exp $ */
2 2
3/* 3/*
4 * Public domain, 2004, Otto Moerbeek <otto@drijf.net> 4 * Public domain, 2004, Otto Moerbeek <otto@drijf.net>
@@ -7,6 +7,7 @@
7#include <err.h> 7#include <err.h>
8#include <netdb.h> 8#include <netdb.h>
9#include <stdarg.h> 9#include <stdarg.h>
10#include <string.h>
10 11
11int ret = 0; 12int ret = 0;
12 13