summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1998-07-27 05:18:29 +0000
committermillert <millert@openbsd.org>1998-07-27 05:18:29 +0000
commite38021b96affd8bf7e8a8b146382a54659eb2df9 (patch)
tree279dd9297c5f7945f9ddfae826b57b5356534e62
parentfix usage (diff)
downloadwireguard-openbsd-e38021b96affd8bf7e8a8b146382a54659eb2df9.tar.xz
wireguard-openbsd-e38021b96affd8bf7e8a8b146382a54659eb2df9.zip
pull in string.h for memset() proto
-rw-r--r--bin/pax/pax.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/pax/pax.c b/bin/pax/pax.c
index d48f5f28f97..b77f9b5c195 100644
--- a/bin/pax/pax.c
+++ b/bin/pax/pax.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pax.c,v 1.12 1998/06/03 08:10:17 deraadt Exp $ */
+/* $OpenBSD: pax.c,v 1.13 1998/07/27 05:18:29 millert Exp $ */
/* $NetBSD: pax.c,v 1.5 1996/03/26 23:54:20 mrg Exp $ */
/*-
@@ -48,7 +48,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)pax.c 8.2 (Berkeley) 4/18/94";
#else
-static char rcsid[] = "$OpenBSD: pax.c,v 1.12 1998/06/03 08:10:17 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: pax.c,v 1.13 1998/07/27 05:18:29 millert Exp $";
#endif
#endif /* not lint */
@@ -61,6 +61,7 @@ static char rcsid[] = "$OpenBSD: pax.c,v 1.12 1998/06/03 08:10:17 deraadt Exp $"
#include <signal.h>
#include <unistd.h>
#include <stdlib.h>
+#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include "pax.h"