diff options
-rw-r--r-- | src/utils.c | 3 | ||||
-rw-r--r-- | src/utils.h | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/utils.c b/src/utils.c index 6535a07..3c08351 100644 --- a/src/utils.c +++ b/src/utils.c @@ -20,7 +20,10 @@ */ #include <stdarg.h> #include <stdio.h> +#include <stdint.h> + #include "utils.h" +#include "libiphone/libiphone.h" int toto_debug = 0; uint16_t dbg_mask = 0; diff --git a/src/utils.h b/src/utils.h index 1750b8e..430e812 100644 --- a/src/utils.h +++ b/src/utils.h @@ -22,13 +22,10 @@ #ifndef UTILS_H #define UTILS_H -#include "libiphone/libiphone.h" - - - inline void log_debug_msg(const char *format, ...); inline void log_dbg_msg(uint16_t id, const char *format, ...); inline void log_debug_buffer(const char *data, const int length); inline void dump_debug_buffer(const char *file, const char *data, const int length); + #endif |