summaryrefslogtreecommitdiffstats
path: root/out.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-22 18:55:32 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-22 18:55:32 +0000
commitf26f75bb32fa1474ee83fcff787b6423c44189cf (patch)
tree44c7e29c549509bc9e5fd633afed4b360a966dbd /out.h
parentee228d79036122b2d0284854cd2e94526fd838b9 (diff)
downloadmandoc-f26f75bb32fa1474ee83fcff787b6423c44189cf.tar.gz
Fixed maddening mismatch between groff and strftime mismatch of day ("%e"). Noted by Ulrich Sporlein.
Diffstat (limited to 'out.h')
-rw-r--r--out.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/out.h b/out.h
index 6a38059f..92ebbba9 100644
--- a/out.h
+++ b/out.h
@@ -17,6 +17,8 @@
#ifndef OUT_H
#define OUT_H
+#define DATESIZ 24
+
__BEGIN_DECLS
enum roffscale {
@@ -52,6 +54,7 @@ struct roffsu {
int a2roffsu(const char *,
struct roffsu *, enum roffscale);
+void time2a(time_t, char *, size_t);
__END_DECLS