unix.ffi: Moving functions to 'unix'

db4
Eduardo Cavazos 2008-05-12 16:33:04 -05:00
parent 2e4a171fcb
commit 1b39855447
1 changed files with 7 additions and 7 deletions

View File

@ -3,13 +3,13 @@ USING: alien.syntax ;
IN: unix.ffi
FUNCTION: int open ( char* path, int flags, int prot ) ;
! FUNCTION: int open ( char* path, int flags, int prot ) ;
C-STRUCT: utimbuf
{ "time_t" "actime" }
{ "time_t" "modtime" } ;
! C-STRUCT: utimbuf
! { "time_t" "actime" }
! { "time_t" "modtime" } ;
FUNCTION: int utime ( char* path, utimebuf* buf ) ;
! FUNCTION: int utime ( char* path, utimebuf* buf ) ;
FUNCTION: int err_no ( ) ;
FUNCTION: char* strerror ( int errno ) ;
! FUNCTION: int err_no ( ) ;
! FUNCTION: char* strerror ( int errno ) ;