summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorguenther <>2011-05-01 04:27:07 +0000
committerguenther <>2011-05-01 04:27:07 +0000
commitfe00c2630ebeaa5767f46b17f7e65e1075712d02 (patch)
tree5b79912e01195d1f2182eb860d8a3332c641cd16
parent50a72bf80c44cf77d9dabce74650002f099579ae (diff)
downloadopenbsd-fe00c2630ebeaa5767f46b17f7e65e1075712d02.tar.gz
openbsd-fe00c2630ebeaa5767f46b17f7e65e1075712d02.tar.bz2
openbsd-fe00c2630ebeaa5767f46b17f7e65e1075712d02.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