diff options
author | Darren Tucker <dtucker@zip.com.au> | 2013-11-03 06:30:46 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2013-11-03 06:30:46 +0100 |
commit | d52770452308e5c2e99f4da6edaaa77ef078b610 (patch) | |
tree | a1add1266e4917b37842ac75a9681deb4b70e0fa /openbsd-compat | |
parent | - jmc@cvs.openbsd.org 2013/10/29 18:49:32 (diff) | |
download | openssh-d52770452308e5c2e99f4da6edaaa77ef078b610.tar.xz openssh-d52770452308e5c2e99f4da6edaaa77ef078b610.zip |
- (dtucker) [openbsd-compat/bsd-misc.c] Include time.h for nanosleep.
From OpenSMTPD where it prevents "implicit declaration" warnings (it's
a no-op in OpenSSH). From chl at openbsd.
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/bsd-misc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c index d75854e83..65e800397 100644 --- a/openbsd-compat/bsd-misc.c +++ b/openbsd-compat/bsd-misc.c @@ -28,6 +28,7 @@ #include <string.h> #include <signal.h> #include <stdlib.h> +#include <time.h> #include <unistd.h> #include "xmalloc.h" |