diff options
author | Nikias Bassen | 2019-09-26 13:33:11 +0200 |
---|---|---|
committer | Nikias Bassen | 2019-09-26 13:33:11 +0200 |
commit | 8de39e81fb44d45f2daed367d770923cc2212265 (patch) | |
tree | 60faa6cb02c9be22808b2e632712ab3c65908dac | |
parent | 8e103a37cc1040341b0cfe8f2c102eb8c1fbfb4b (diff) | |
download | idevicerestore-8de39e81fb44d45f2daed367d770923cc2212265.tar.gz idevicerestore-8de39e81fb44d45f2daed367d770923cc2212265.tar.bz2 |
ftab: Add missing stdint.h include
-rw-r--r-- | src/ftab.c | 1 | ||||
-rw-r--r-- | src/ftab.h | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -22,6 +22,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <stdint.h> #include "ftab.h" #include "common.h" @@ -26,6 +26,8 @@ extern "C" { #endif +#include <stdint.h> + struct ftab_header { uint32_t always_01; // 1 uint32_t always_ff; // 0xFFFFFFFF |