浏览代码

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)