diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-01-17 05:20:53 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-01-17 05:47:24 +0100 |
commit | 943d0965263cae1c080ce5a9d0b5aa341885e55d (patch) | |
tree | 543298bf95d3ff357dd677c16db174a5b555b58a /auth.c | |
parent | upstream: many of the global variables in this file can be made static; (diff) | |
download | openssh-943d0965263cae1c080ce5a9d0b5aa341885e55d.tar.xz openssh-943d0965263cae1c080ce5a9d0b5aa341885e55d.zip |
upstream: include time.h for time(3)/nanosleep(2); from Ian
McKellar
OpenBSD-Commit-ID: 6412ccd06a88f65b207a1089345f51fa1244ea51
Diffstat (limited to 'auth.c')
-rw-r--r-- | auth.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: auth.c,v 1.134 2018/11/16 03:26:01 djm Exp $ */ +/* $OpenBSD: auth.c,v 1.135 2019/01/17 04:20:53 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -50,6 +50,7 @@ #include <unistd.h> #include <limits.h> #include <netdb.h> +#include <time.h> #include "xmalloc.h" #include "match.h" |