diff options
author | Araq <rumpf_a@web.de> | 2013-12-24 00:21:22 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-12-24 00:21:22 +0100 |
commit | feb9af48f1600ce814bc3b62765894ba503ec108 (patch) | |
tree | cf3282dc69888f0816d70e0ed5ed3efba99fbb32 /lib/system/sysio.nim | |
parent | 32ef1f8f323044c0d92f1beef396ce3223a96231 (diff) | |
download | Nim-feb9af48f1600ce814bc3b62765894ba503ec108.tar.gz |
NoFakeVars progress
Diffstat (limited to 'lib/system/sysio.nim')
-rw-r--r-- | lib/system/sysio.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/system/sysio.nim b/lib/system/sysio.nim index 23f4e874c..8d9400a7d 100644 --- a/lib/system/sysio.nim +++ b/lib/system/sysio.nim @@ -50,6 +50,10 @@ when NoFakeVars: const IOFBF = cint(0) IONBF = cint(4) + elif defined(macosx): + const + IOFBF = cint(0) + IONBF = cint(2) else: {.error: "IOFBF not ported to your platform".} else: |