diff options
author | Daiki Ueno <dueno@redhat.com> | 2017-08-16 14:59:59 +0200 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2017-08-16 17:10:04 +0200 |
commit | 61acf20f26b07e2f3eb253cbfee4c473544df9a7 (patch) | |
tree | 88e978baaeee23dbccd84584646f756eca38a0f2 | |
parent | 32d6f9d2468ea2851d16ad0e1a2046dfd8cd7fa5 (diff) |
build: Include <stdint.h> for SIZE_MAX
Fixes issue #95.
-rw-r--r-- | common/compat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/compat.c b/common/compat.c index 3114724..1e17230 100644 --- a/common/compat.c +++ b/common/compat.c @@ -50,6 +50,7 @@ #include <assert.h> #include <dirent.h> #include <errno.h> +#include <stdint.h> #include <stdlib.h> #include <string.h> |