unix/mpconfigport.h: Don't include stdio.h on MacOS.

Fixes build errors such as
"../lib/utils/printf.c:43:5: error: expected parameter declarator"
This commit is contained in:
ilovezfs 2016-08-10 07:35:20 -07:00 committed by Paul Sokolovsky
parent 5e01fb01b3
commit 4e36dd570b

View File

@ -305,5 +305,7 @@ void mp_unix_mark_exec(void);
#define _DIRENT_HAVE_D_INO (1)
#endif
#ifndef __APPLE__
// For debugging purposes, make printf() available to any source file.
#include <stdio.h>
#endif