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

This allows to use printf() in a any source file with unix port, for quick
debugging.
pull/2266/head
Paul Sokolovsky 2016-07-26 02:49:48 +03:00
rodzic d1771bbae0
commit 243f8988be
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -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>