Flush stdout on android

This commit is contained in:
Jeremy Lakeman 2014-09-12 15:19:56 +09:30
parent e05d70b1a5
commit d0ae11d419

View File

@ -27,5 +27,6 @@ void exit(int status)
{
if (config.debug.verbose)
DEBUGF("Calling _exit(%d)", status);
fflush(stdout);
_exit(status);
}