summaryrefslogtreecommitdiffstats
path: root/compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/compat.h b/compat.h
index 828c956d..13334ad7 100644
--- a/compat.h
+++ b/compat.h
@@ -265,6 +265,13 @@ void warnx(const char *, ...);
#define HOST_NAME_MAX 255
#endif
+#ifndef CLOCK_REALTIME
+#define CLOCK_REALTIME 0
+#endif
+#ifndef CLOCK_MONOTONIC
+#define CLOCK_MONOTONIC CLOCK_REALTIME
+#endif
+
#ifndef HAVE_FLOCK
#define LOCK_SH 0
#define LOCK_EX 0
@@ -342,6 +349,11 @@ const char *getprogname(void);
void setproctitle(const char *, ...);
#endif
+#ifndef HAVE_CLOCK_GETTIME
+/* clock_gettime.c */
+int clock_gettime(int, struct timespec *);
+#endif
+
#ifndef HAVE_B64_NTOP
/* base64.c */
#undef b64_ntop