diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-05 22:51:11 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-05 22:51:11 +0000 |
commit | 4e045795c0b9e4b7f54bcb4057d3980e4dd9dfdf (patch) | |
tree | 86e7e263dd577284552d96a769a9ea310e75b031 | |
parent | 35113f62e6ccc78c855932737688dc3072f1d3d7 (diff) | |
download | mandoc-4e045795c0b9e4b7f54bcb4057d3980e4dd9dfdf.tar.gz |
uint8_t requires <stdint.h>; from Michael Stapelberg
-rw-r--r-- | mandocd.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -24,6 +24,7 @@ #include <err.h> #endif #include <limits.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |