Преглед изворни кода

Include stddef.h to fix size_t reference

Lucien Greathouse пре 1 година
родитељ
комит
7e614bbdc9
1 измењених фајлова са 3 додато и 2 уклоњено
  1. 3 2
      JoltC/Functions.h

+ 3 - 2
JoltC/Functions.h

@@ -1,8 +1,9 @@
 #pragma once
 
-#include <stdint.h>
-#include <stdbool.h>
 #include <stdalign.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
 
 #ifdef _MSC_VER
 	#define JPC_API extern __declspec(dllexport)