10 lines
280 B
Factor
10 lines
280 B
Factor
|
! Copyright (C) 2008 Doug Coleman.
|
||
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
USING: combinators system vocabs.loader ;
|
||
|
IN: serial.unix.termios
|
||
|
|
||
|
{
|
||
|
{ [ os linux? ] [ "serial.unix.termios.linux" ] }
|
||
|
{ [ os bsd? ] [ "serial.unix.termios.bsd" ] }
|
||
|
} cond require
|