diff options
author | 2008-11-04 07:58:09 +0000 | |
---|---|---|
committer | 2008-11-04 07:58:09 +0000 | |
commit | 0970178fad1c6615aebc257e04753f4d1c884d85 (patch) | |
tree | 95e1f14de8644706e54321bbe1f24cecf05a57fa /usr.bin/ssh/auth.c | |
parent | changes to get target equivalence to work better. (diff) | |
download | wireguard-openbsd-0970178fad1c6615aebc257e04753f4d1c884d85.tar.xz wireguard-openbsd-0970178fad1c6615aebc257e04753f4d1c884d85.zip |
need unistd.h for close() prototype
Diffstat (limited to 'usr.bin/ssh/auth.c')
-rw-r--r-- | usr.bin/ssh/auth.c | 3 |
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" |