From 413c45be1fe6d1b8ae09a204010258f00019fdd5 Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Thu, 18 Dec 2014 17:25:38 -0500 Subject: [PATCH] Added stdio.h to ya_debug.h --- ya_debug.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ya_debug.h b/ya_debug.h index af35d90..aa47843 100644 --- a/ya_debug.h +++ b/ya_debug.h @@ -6,6 +6,8 @@ #ifndef YA_DEBUG_H #define YA_DEBUG_H +#include // for fprintf, so that other files may simply include this + #ifdef YA_DEBUG // enables debugging #define ya_debug(...) fprintf(stderr, __VA_ARGS__)