diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-25 16:08:30 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-25 16:08:30 +0000 |
commit | 6523a18ca02eff88194a52b582daa4f0b84b6ac8 (patch) | |
tree | 4b1484368512f5325cb5234a60cce66538636f98 | |
parent | 8747d57cb532849c7414532781921952821890ef (diff) | |
download | mandoc-6523a18ca02eff88194a52b582daa4f0b84b6ac8.tar.gz |
Linux fix (prototype).
-rw-r--r-- | man_action.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/man_action.c b/man_action.c index 95b13fdb..00a284d8 100644 --- a/man_action.c +++ b/man_action.c @@ -27,6 +27,9 @@ #include "libman.h" +#ifdef __linux__ +extern char *strptime(const char *, const char *, struct tm *); +#endif struct actions { int (*post)(struct man *); |