Searched refs:newfp (Results 1 - 1 of 1) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/main/win32/
H A DSDL_win32_main.c207 FILE *newfp; local
224 newfp = freopen(stdoutPath, TEXT("w"), stdout);
227 if ( newfp == NULL ) { /* This happens on NT */
231 newfp = fopen(stdoutPath, TEXT("w"));
232 if ( newfp ) {
233 *stdout = *newfp;
247 newfp = freopen(stderrPath, TEXT("w"), stderr);
249 if ( newfp == NULL ) { /* This happens on NT */
253 newfp = fopen(stderrPath, TEXT("w"));
254 if ( newfp ) {
[all...]

Completed in 88 milliseconds