github.com/gotranspile/cxgo@v0.3.8-0.20240118201721-29871598a6a2/runtime/csys/types.go (about)

     1  package csys
     2  
     3  import "os"
     4  
     5  const (
     6  	O_RDONLY = int32(os.O_RDONLY)
     7  	O_WRONLY = int32(os.O_WRONLY)
     8  	O_RDWR   = int32(os.O_RDWR)
     9  	O_CREAT  = int32(os.O_CREATE)
    10  	O_EXCL   = int32(os.O_EXCL)
    11  	O_TRUNC  = int32(os.O_TRUNC)
    12  )