diff options
author | Nikias Bassen | 2022-04-13 13:25:47 +0200 |
---|---|---|
committer | Nikias Bassen | 2022-04-13 13:25:47 +0200 |
commit | 00131b56d15e62ec83ab3dca9cf5372140f9b255 (patch) | |
tree | 4a57c1a9b3e3cc07011b4c8d9e98d40ee99626ab /include/libimobiledevice-glue | |
parent | bc6c44b92091c9587a9bed0ed3f2c3248bfd13b3 (diff) | |
download | libimobiledevice-glue-00131b56d15e62ec83ab3dca9cf5372140f9b255.tar.gz libimobiledevice-glue-00131b56d15e62ec83ab3dca9cf5372140f9b255.tar.bz2 |
termcolors: Add missing stdio.h include
Thanks to @Schlaubischlump for pointing this out.
Diffstat (limited to 'include/libimobiledevice-glue')
-rw-r--r-- | include/libimobiledevice-glue/termcolors.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libimobiledevice-glue/termcolors.h b/include/libimobiledevice-glue/termcolors.h index 2bac741..82c4785 100644 --- a/include/libimobiledevice-glue/termcolors.h +++ b/include/libimobiledevice-glue/termcolors.h @@ -25,6 +25,7 @@ #endif #include <stdarg.h> +#include <stdio.h> #define COLOR_RESET "\e[m" #define STYLE_NORMAL "\e[0m" |