1 #include "abortutil.hpp"
2 #if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__)))
3 
Disable_Console_Output()4 void Disable_Console_Output()
5 {
6     // close C file descriptors
7     fclose(stdout);
8     fclose(stderr);
9 }
10 
11 #endif
12