(main): Do not sync I/O streams with stdio, since I do not use stdin,

stdout or stderr.
This commit is contained in:
John Wiegley 2005-02-18 05:19:51 +00:00
parent 5c25fc413c
commit 25655cf91a

View file

@ -539,6 +539,8 @@ def vmax(d, val):\n\
int main(int argc, char * argv[], char * envp[])
{
std::ios::sync_with_stdio(false);
try {
return parse_and_report(argc, argv, envp);
}