diff options
author | Nikias Bassen | 2012-07-17 01:36:42 +0200 |
---|---|---|
committer | Nikias Bassen | 2012-07-17 01:36:42 +0200 |
commit | 1174f8226b258cb778752e45d010285f6f6ff9fa (patch) | |
tree | 752ec2079aa6185bfb66b443fbabb5a885f1e3bf /src | |
parent | c960398317b2bba90d59612edee5cc95ca81e1f9 (diff) | |
download | idevicerestore-1174f8226b258cb778752e45d010285f6f6ff9fa.tar.gz idevicerestore-1174f8226b258cb778752e45d010285f6f6ff9fa.tar.bz2 |
locking: add missing include to make mingw compiler happy
Diffstat (limited to 'src')
-rw-r--r-- | src/locking.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/locking.h b/src/locking.h index 9bde00b..4114f1b 100644 --- a/src/locking.h +++ b/src/locking.h @@ -20,10 +20,10 @@ */ #ifndef LOCKING_H #define LOCKING_H +#include <stdio.h> #ifdef WIN32 #include <windows.h> #else -#include <stdio.h> #include <fcntl.h> #endif |