summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchl <chl@openbsd.org>2008-11-05 16:03:02 +0000
committerchl <chl@openbsd.org>2008-11-05 16:03:02 +0000
commitc91ca4a4f403ee2f701b4f333c0ec449cac785be (patch)
tree10a48f38a4852e84e87f30677ce21ee2c28df82b
parentFix some function prototypes, remove unused variables and commented out code (diff)
downloadwireguard-openbsd-c91ca4a4f403ee2f701b4f333c0ec449cac785be.tar.xz
wireguard-openbsd-c91ca4a4f403ee2f701b4f333c0ec449cac785be.zip
add missing header needed by strcmp/strerror/memset functions.
ok canacar@
-rw-r--r--usr.bin/systat/pool.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/systat/pool.c b/usr.bin/systat/pool.c
index 1f7500dc722..c8197e3cd7e 100644
--- a/usr.bin/systat/pool.c
+++ b/usr.bin/systat/pool.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pool.c,v 1.2 2008/11/02 07:14:16 canacar Exp $ */
+/* $OpenBSD: pool.c,v 1.3 2008/11/05 16:03:02 chl Exp $ */
/*
* Copyright (c) 2008 Can Erkin Acar <canacar@openbsd.org>
*
@@ -21,6 +21,7 @@
#include <sys/pool.h>
#include <errno.h>
#include <stdlib.h>
+#include <string.h>
#include "systat.h"