mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00
23 lines
507 B
Diff
23 lines
507 B
Diff
diff --git sds.h sds.h
|
|
--- sds.h
|
|
+++ sds.h
|
|
@@ -43,1 +43,6 @@
|
|
|
|
+#if defined(_MSC_VER) && !defined(__clang__)
|
|
+#pragma pack(push, 1)
|
|
+#pragma push_macro("__attribute__")
|
|
+#define __attribute__(A)
|
|
+#endif
|
|
@@ -74,1 +78,5 @@
|
|
+#if defined(_MSC_VER) && !defined(__clang__)
|
|
+#pragma pop_macro("__attribute__")
|
|
+#pragma pack(pop)
|
|
+#endif
|
|
|
|
diff --git fmacros.h fmacros.h
|
|
--- fmacros.h
|
|
+++ fmacros.h
|
|
@@ -12,0 +12,3 @@
|
|
+#if defined(_MSC_VER) && !defined(__clang__) && !defined(strdup)
|
|
+#define strdup _strdup
|
|
+#endif
|