ソースを参照

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

Zachary Pierson 8 年 前
コミット
7a28827602
2 ファイル変更1 行追加1 行削除
  1. BIN
      odin.exe
  2. 1 1
      src/types.c

BIN
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) {