aboutsummaryrefslogtreecommitdiff
path: root/src/types.c
diff options
context:
space:
mode:
authorZachary Pierson <zacpiersonhehe@gmail.com>2017-03-21 19:30:54 -0500
committerZachary Pierson <zacpiersonhehe@gmail.com>2017-03-21 19:30:54 -0500
commit7a28827602f29f0e9485ca6617daf316635802df (patch)
tree50595b48c48f5a1181e62f1a7a06eb063423823f /src/types.c
parentc61015b1fe2a0451fc4e5f6231718f82f0e9df2d (diff)
Forgot to include stdio.h since Win32 won't resolve it otherwise.
Diffstat (limited to 'src/types.c')
-rw-r--r--src/types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.c b/src/types.c
index 75510cf85..534f00f15 100644
--- a/src/types.c
+++ b/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) {