summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4f4c23d)
raw | patch | inline | side by side (parent: 4f4c23d)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Mon, 14 Nov 2011 21:30:31 +0000 (21:30 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Mon, 14 Nov 2011 21:30:31 +0000 (21:30 +0000) |
program/src/rrd_tool.c | patch | blob | history |
diff --git a/program/src/rrd_tool.c b/program/src/rrd_tool.c
index bb1bc3ed5304164e63d1778567ba2979d5e20864..0748d92cad39902a780c8d34df0fe9b80638998d 100644 (file)
--- a/program/src/rrd_tool.c
+++ b/program/src/rrd_tool.c
#include "../win32/config.h"
#include <stdlib.h>
#include <sys/stat.h>
+#include <io.h>
+#include <fcntl.h>
#else
#ifdef HAVE_CONFIG_H
#include "../rrd_config.h"
according to localeconv(3) */
setlocale(LC_ALL, "");
+#ifdef WIN32 && !defined(__CYGWIN__)
+ setmode(fileno(stdout), O_BINARY);
+ setmode(fileno(stdin), O_BINARY);
+#endif
+
+
#if defined(HAVE_LIBINTL_H) && defined(BUILD_LIBINTL)
bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
textdomain(GETTEXT_PACKAGE);