diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-22 18:55:32 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-22 18:55:32 +0000 |
commit | f26f75bb32fa1474ee83fcff787b6423c44189cf (patch) | |
tree | 44c7e29c549509bc9e5fd633afed4b360a966dbd /out.h | |
parent | ee228d79036122b2d0284854cd2e94526fd838b9 (diff) | |
download | mandoc-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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |