]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/io/serial/linux/ffi/ffi.factor
factor: rename files that are not loadable on mac, too
[factor.git] / extra / io / serial / linux / ffi / ffi.factor
index 64f634504c7f7119a9776b46796a589c235b282c..585aac8f5dfe2c45601a6f9a07a3a9dbcabb18ce 100644 (file)
@@ -20,18 +20,18 @@ STRUCT: termios
     { ispeed speed_t }
     { ospeed speed_t } ;
 
-FUNCTION: speed_t cfgetispeed ( termios* t ) ;
-FUNCTION: speed_t cfgetospeed ( termios* t ) ;
-FUNCTION: int cfsetispeed ( termios* t, speed_t s ) ;
-FUNCTION: int cfsetospeed ( termios* t, speed_t s ) ;
-FUNCTION: int tcgetattr ( int i1, termios* t ) ;
-FUNCTION: int tcsetattr ( int i1, int i2, termios* t ) ;
-FUNCTION: int tcdrain ( int i1 ) ;
-FUNCTION: int tcflow ( int i1, int i2 ) ;
-FUNCTION: int tcflush ( int i1, int i2 ) ;
-FUNCTION: int tcsendbreak ( int i1, int i2 ) ;
-FUNCTION: void cfmakeraw ( termios* t ) ;
-FUNCTION: int cfsetspeed ( termios* t, speed_t s ) ;
+FUNCTION: speed_t cfgetispeed ( termios* t )
+FUNCTION: speed_t cfgetospeed ( termios* t )
+FUNCTION: int cfsetispeed ( termios* t, speed_t s )
+FUNCTION: int cfsetospeed ( termios* t, speed_t s )
+FUNCTION: int tcgetattr ( int i1, termios* t )
+FUNCTION: int tcsetattr ( int i1, int i2, termios* t )
+FUNCTION: int tcdrain ( int i1 )
+FUNCTION: int tcflow ( int i1, int i2 )
+FUNCTION: int tcflush ( int i1, int i2 )
+FUNCTION: int tcsendbreak ( int i1, int i2 )
+FUNCTION: void cfmakeraw ( termios* t )
+FUNCTION: int cfsetspeed ( termios* t, speed_t s )
 
 CONSTANT: TCSANOW     0
 CONSTANT: TCSADRAIN   1