mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 11:28:59 +08:00
6717e1b9d0
* [iniparser] Add new port * [iniparser] Fix build errors on UWP * [iniparser] Move linkage check before code downloading
30 lines
650 B
Diff
30 lines
650 B
Diff
diff --git a/src/dictionary.c b/src/dictionary.c
|
|
index cb7ccd4..7985ab3 100644
|
|
--- a/src/dictionary.c
|
|
+++ b/src/dictionary.c
|
|
@@ -18,7 +18,6 @@
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
-#include <unistd.h>
|
|
|
|
/** Maximum value size for integers and doubles. */
|
|
#define MAXVALSZ 1024
|
|
diff --git a/src/dictionary.h b/src/dictionary.h
|
|
index d04b6ce..929ae17 100644
|
|
--- a/src/dictionary.h
|
|
+++ b/src/dictionary.h
|
|
@@ -21,7 +21,12 @@
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
+#ifdef _MSC_VER
|
|
+#include <BaseTsd.h>
|
|
+typedef SSIZE_T ssize_t;
|
|
+#else
|
|
#include <unistd.h>
|
|
+#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|