From 243f8988be2f9d8ba92ef605fe74c123ad26d536 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 26 Jul 2016 02:49:48 +0300 Subject: [PATCH] unix/mpconfigport.h: Include stdio.h by default. This allows to use printf() in a any source file with unix port, for quick debugging. --- unix/mpconfigport.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index b5c65f7cfd..2f4ec11211 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -301,3 +301,6 @@ void mp_unix_mark_exec(void); #ifndef _DIRENT_HAVE_D_INO #define _DIRENT_HAVE_D_INO (1) #endif + +// For debugging purposes, make printf() available to any source file. +#include