Kaynağa Gözat

Include stddef.h to fix size_t reference

Lucien Greathouse 1 yıl önce
ebeveyn
işleme
7e614bbdc9
1 değiştirilmiş dosya ile 3 ekleme ve 2 silme
  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)