Просмотр исходного кода

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

Zachary Pierson 8 лет назад
Родитель
Сommit
7a28827602
2 измененных файлов с 1 добавлено и 1 удалено
  1. BIN
      odin.exe
  2. 1 1
      src/types.c

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