diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-24 23:07:18 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-24 23:07:18 +0200 |
commit | ad359745ee190a5b8e14b9c56ec8d78a181446ae (patch) | |
tree | a2692e08cfb07069302a387608faf4b5f5cfd7bc /include/tar.h | |
parent | 2a941d1c1efa6f392aafcc2e8b442e39a9cb214c (diff) |
Add missing stdint.h header to tar.h
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/tar.h')
-rw-r--r-- | include/tar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/tar.h b/include/tar.h index 7862235..a39d7c9 100644 --- a/include/tar.h +++ b/include/tar.h @@ -4,6 +4,7 @@ #include <sys/stat.h> #include <stdbool.h> +#include <stdint.h> typedef struct { char name[100]; |