瀏覽代碼

Forgot to include stdio.h since Win32 won't resolve it otherwise.

Zachary Pierson 8 年之前
父節點
當前提交
7a28827602
共有 2 個文件被更改,包括 1 次插入1 次删除
  1. 二進制
      odin.exe
  2. 1 1
      src/types.c

二進制
odin.exe


+ 1 - 1
src/types.c

@@ -1035,7 +1035,7 @@ typedef enum ProcTypeOverloadKind {
 
 } ProcTypeOverloadKind;
 
-
+#include "stdio.h"
 bool has_encountered_null_proc_type = false;
 ProcTypeOverloadKind are_proc_types_overload_safe(Type *x, Type *y) {
 	if(x == NULL && y == NULL) {