diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-22 18:59:00 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-22 18:59:00 +0000 |
commit | 22600541da017c5a8c6de3b241d99a0450041385 (patch) | |
tree | bc7b2c6dae9f8f6554fe8f9867d7c8e5baebc142 | |
parent | f26f75bb32fa1474ee83fcff787b6423c44189cf (diff) | |
download | mandoc-22600541da017c5a8c6de3b241d99a0450041385.tar.gz |
Linuxisms.
-rw-r--r-- | out.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,9 +21,13 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include "out.h" +#ifdef __linux__ +extern size_t strlcat(char *, const char *, size_t); +#endif /* * Convert a `scaling unit' to a consistent form, or fail. Scaling |