diff options
author | 2024-11-27 12:56:02 +0100 | |
---|---|---|
committer | 2024-11-29 14:38:42 +0100 | |
commit | 9bc95a0c307e7614cc3d10671d6c1c90c3ac0a9f (patch) | |
tree | 685088ccc31d3a0971ee65d42346294af1011b4d /src/misagent.c | |
parent | 563f912919d4615486ed3e02b517b005f784c1d9 (diff) | |
download | libimobiledevice-9bc95a0c307e7614cc3d10671d6c1c90c3ac0a9f.tar.gz libimobiledevice-9bc95a0c307e7614cc3d10671d6c1c90c3ac0a9f.tar.bz2 |
Fix compilation on MSVC
Diffstat (limited to 'src/misagent.c')
-rw-r--r-- | src/misagent.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/misagent.c b/src/misagent.c index e3da997..3fdca4d 100644 --- a/src/misagent.c +++ b/src/misagent.c @@ -24,9 +24,13 @@ #endif #include <string.h> #include <stdlib.h> +#include <stdio.h> + +#ifndef _MSC_VER #include <unistd.h> +#endif + #include <plist/plist.h> -#include <stdio.h> #include "misagent.h" #include "property_list_service.h" |