diff options
author | def <dennis@felsin9.de> | 2015-02-04 11:18:24 +0100 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-02-04 11:18:24 +0100 |
commit | 4712c6951280befa162687cc98611e052fe71788 (patch) | |
tree | 933a1259f375efe6becaa2e634023f3f3f6c38d6 /lib/posix/termios.nim | |
parent | dcd23ae1f1b52f48f3d32a753ae4db065b3985f8 (diff) | |
download | Nim-4712c6951280befa162687cc98611e052fe71788.tar.gz |
Fix typo
Diffstat (limited to 'lib/posix/termios.nim')
-rw-r--r-- | lib/posix/termios.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/posix/termios.nim b/lib/posix/termios.nim index 88aed73c8..94258772f 100644 --- a/lib/posix/termios.nim +++ b/lib/posix/termios.nim @@ -18,7 +18,7 @@ const NCCS* = 32 type - Termios* = object {.importc: "struct termios", header: "termios.h>", final, pure.} + Termios* = object {.importc: "struct termios", header: "<termios.h>", final, pure.} iflag*: Tcflag # input mode flags oflag*: Tcflag # output mode flags cflag*: Tcflag # control mode flags |