summaryrefslogtreecommitdiffstats
path: root/usr.bin/unexpand
diff options
context:
space:
mode:
authordavid <david@openbsd.org>2003-07-10 00:03:01 +0000
committerdavid <david@openbsd.org>2003-07-10 00:03:01 +0000
commit70ef01f6b6194678ab4b0d3e75b69b778e052774 (patch)
tree327f61fc3ee8fa272aff461b4c40cc1e9c9b510e /usr.bin/unexpand
parentadd missing includes (diff)
downloadwireguard-openbsd-70ef01f6b6194678ab4b0d3e75b69b778e052774.tar.xz
wireguard-openbsd-70ef01f6b6194678ab4b0d3e75b69b778e052774.zip
add missing includes
ok deraadt@ tedu@
Diffstat (limited to 'usr.bin/unexpand')
-rw-r--r--usr.bin/unexpand/unexpand.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/unexpand/unexpand.c b/usr.bin/unexpand/unexpand.c
index fbd15dbcedb..a24be37ae81 100644
--- a/usr.bin/unexpand/unexpand.c
+++ b/usr.bin/unexpand/unexpand.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: unexpand.c,v 1.8 2003/06/10 22:20:53 deraadt Exp $ */
+/* $OpenBSD: unexpand.c,v 1.9 2003/07/10 00:06:51 david Exp $ */
/* $NetBSD: unexpand.c,v 1.5 1994/12/24 17:08:05 cgd Exp $ */
/*-
@@ -40,13 +40,14 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)unexpand.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$OpenBSD: unexpand.c,v 1.8 2003/06/10 22:20:53 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: unexpand.c,v 1.9 2003/07/10 00:06:51 david Exp $";
#endif /* not lint */
/*
* unexpand - put tabs into a file replacing blanks
*/
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
char genbuf[BUFSIZ];