stream.c

Tue, 20 Sep 2011 15:19:28 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 20 Sep 2011 15:19:28 +0200
changeset 16
bc9a0fefd892
child 20
43725438ac50
permissions
-rw-r--r--

fixed makefile to run safely on compile errors + added -V option to cline

/*
 * stream.c
 *
 *  Created on: 20.09.2011
 *      Author: beckermi
 */

#include "stream.h"

void close_stdout() {
#ifdef _WIN32
  _STREAM_STDOUT = dup(STDOUT_FILENO);
#endif
  freopen("/dev/null", "w", stdout);
}

void reopen_stdout() {
#ifdef _WIN32
  close(STDOUT_FILENO);
  fdopen(dup(_STREAM_STDOUT), "wa");
  close(_STREAM_STDOUT);
#else
  freopen("/dev/stdout", "w", stdout);
#endif
}

mercurial