unix/mpconfigport.h: Include stdio.h by default.

This allows to use printf() in a any source file with unix port, for quick
debugging.
This commit is contained in:
Paul Sokolovsky 2016-07-26 02:49:48 +03:00
parent d1771bbae0
commit 243f8988be
1 changed files with 3 additions and 0 deletions

View File

@ -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 <stdio.h>