summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2008-11-04 07:58:10 +0000
committerDamien Miller <djm@cvs.openbsd.org>2008-11-04 07:58:10 +0000
commit3010edbd27e028b9e482108933e6b768750f2d8b (patch)
treef02b9a983795eef897d0b32a89905772b3076797 /usr.bin/ssh
parentd85ac4e823c81380e3ec028a1aae17a7b45ceae0 (diff)
need unistd.h for close() prototype
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/auth.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth.c b/usr.bin/ssh/auth.c
index 63d9b14ce7f..acc77c3b610 100644
--- a/usr.bin/ssh/auth.c
+++ b/usr.bin/ssh/auth.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth.c,v 1.79 2008/07/02 12:03:51 dtucker Exp $ */
+/* $OpenBSD: auth.c,v 1.80 2008/11/04 07:58:09 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -36,6 +36,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
+#include <unistd.h>
#include "xmalloc.h"
#include "match.h"