diff options
| author | Zachary Pierson <zacpiersonhehe@gmail.com> | 2017-03-21 19:30:54 -0500 |
|---|---|---|
| committer | Zachary Pierson <zacpiersonhehe@gmail.com> | 2017-03-21 19:30:54 -0500 |
| commit | 7a28827602f29f0e9485ca6617daf316635802df (patch) | |
| tree | 50595b48c48f5a1181e62f1a7a06eb063423823f /src | |
| parent | c61015b1fe2a0451fc4e5f6231718f82f0e9df2d (diff) | |
Forgot to include stdio.h since Win32 won't resolve it otherwise.
Diffstat (limited to 'src')
| -rw-r--r-- | src/types.c | 2 |
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) { |