diff options
author | Joshua Hill | 2010-06-21 03:47:54 -0400 |
---|---|---|
committer | Joshua Hill | 2010-06-21 03:59:31 -0400 |
commit | 930f4b350474435e011b9dca18424dd1c42ea353 (patch) | |
tree | 68b5631b4877710b9aa39e4aa68cbc538bf5d324 /src/common.h | |
parent | 24afafe06f902bfd9f5652beb8797f24033c68bc (diff) | |
download | idevicerestore-930f4b350474435e011b9dca18424dd1c42ea353.tar.gz idevicerestore-930f4b350474435e011b9dca18424dd1c42ea353.tar.bz2 |
Finally fixed the out of control problem
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common.h b/src/common.h index cb774a5..50f682f 100644 --- a/src/common.h +++ b/src/common.h @@ -22,12 +22,12 @@ #ifndef IDEVICERESTORE_COMMON_H #define IDEVICERESTORE_COMMON_H -#include <plist/plist.h> - #ifdef __cplusplus extern "C" { #endif +#include <plist/plist.h> + #define info(...) printf(__VA_ARGS__) #define error(...) fprintf(stderr, __VA_ARGS__) #define debug(...) if(idevicerestore_debug) fprintf(stderr, __VA_ARGS__) |