open-file ( path flags mode -- fd )


Vocabulary
unix

Definition
USING: system ;

IN: unix

HOOK: open-file os ( path flags mode -- fd )


Methods
USING: system unix unix.ffi ;

M: linux open-file [ open64 ] unix-system-call ;


USING: system unix unix.ffi ;

M: unix open-file [ open ] unix-system-call ;