summaryrefslogtreecommitdiff
path: root/zen/file_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_io.h')
-rw-r--r--zen/file_io.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/zen/file_io.h b/zen/file_io.h
index 0c7506a1..2e9e828e 100644
--- a/zen/file_io.h
+++ b/zen/file_io.h
@@ -22,10 +22,8 @@ namespace zen
{
#ifdef ZEN_WIN
static const char LINE_BREAK[] = "\r\n";
-#elif defined ZEN_LINUX
-static const char LINE_BREAK[] = "\n";
-#elif defined ZEN_MAC
-static const char LINE_BREAK[] = "\r";
+#elif defined ZEN_LINUX || defined ZEN_MAC
+static const char LINE_BREAK[] = "\n"; //since OS X apple uses newline, too
#endif
//buffered file IO optimized for sequential read/write accesses + better error reporting + long path support (following symlinks)
bgstack15