aboutsummaryrefslogtreecommitdiff
path: root/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'log.h')
-rw-r--r--log.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/log.h b/log.h
index 2f866d1..584ef28 100644
--- a/log.h
+++ b/log.h
@@ -15,6 +15,7 @@
*/
#include <stdio.h>
+#include <sys/timeb.h>
#define die(fmt, ...) {\
fprintf(stderr, "err: %s: " fmt "\n", __func__ __VA_OPT__(,) __VA_ARGS__); \
@@ -34,5 +35,3 @@
#define debug(fmt, ...) \
fprintf(stderr, "dbg: %s: " fmt "\n", __func__ __VA_OPT__(,) __VA_ARGS__)
-
-// vi: sw=4 ts=4 noet tw=80 cc=80