summaryrefslogtreecommitdiffstats
path: root/macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-09 13:17:49 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-09 13:17:49 +0000
commit79c252d0d501a7a16abd7ad9da42ff7440083ee4 (patch)
tree61f798abeddcb38e33d918cd810e7e6e4e874610 /macro.c
parent3c250f9844dc2759a6887a574ce490316f7d1939 (diff)
downloadmandoc-79c252d0d501a7a16abd7ad9da42ff7440083ee4.tar.gz
Easier integration into FreeBSD (sys/types.h, time.h, etc.).VERSION.1.4.5
Diffstat (limited to 'macro.c')
-rw-r--r--macro.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/macro.c b/macro.c
index ba29e9dd..0e7598f3 100644
--- a/macro.c
+++ b/macro.c
@@ -21,9 +21,8 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
-#ifdef __linux__
-#include <time.h>
-#endif
+
+#include "private.h"
/*
* This has scanning/parsing routines, each of which extract a macro and
@@ -31,8 +30,6 @@
* macro.
*/
-#include "private.h"
-
static int macro_obsolete(MACRO_PROT_ARGS);
static int macro_constant(MACRO_PROT_ARGS);
static int macro_constant_scoped(MACRO_PROT_ARGS);