factor/basis/io/files/unique/unix/unix.factor

11 lines
352 B
Factor
Raw Normal View History

2008-10-06 18:17:14 -04:00
! Copyright (C) 2008 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: io.backend.unix io.files.unique.private literals system
unix unix.ffi ;
IN: io.files.unique.unix
CONSTANT: open-unique-flags flags{ O_RDWR O_CREAT O_EXCL }
M: unix (touch-unique-file) ( path -- )
2008-05-14 07:08:57 -04:00
open-unique-flags file-mode open-file close-file ;