summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--openbsd-compat/bsd-misc.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b4c028568..684675ca6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120131103
2 - (dtucker) [openbsd-compat/bsd-misc.c] Include time.h for nanosleep.
3 From OpenSMTPD where it prevents "implicit declaration" warnings (it's
4 a no-op in OpenSSH). From chl at openbsd.
5
120131030 620131030
2 - (djm) OpenBSD CVS Sync 7 - (djm) OpenBSD CVS Sync
3 - djm@cvs.openbsd.org 2013/10/29 09:42:11 8 - djm@cvs.openbsd.org 2013/10/29 09:42:11
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 @@
28#include <string.h> 28#include <string.h>
29#include <signal.h> 29#include <signal.h>
30#include <stdlib.h> 30#include <stdlib.h>
31#include <time.h>
31#include <unistd.h> 32#include <unistd.h>
32 33
33#include "xmalloc.h" 34#include "xmalloc.h"