justincormack / ljsyscall

LuaJIT Unix syscall FFI
http://www.myriabit.com/ljsyscall/
Other
440 stars 53 forks source link

Missing O_TMPFILE constant #222

Open daurnimator opened 6 years ago

daurnimator commented 6 years ago

Missing O_TMPFILE (passed to open on at least linux)

O_TMPFILE is actually two flags: __O_TMPFILE+O_DIRECTORY. I think both O_TMPFILE and __O_TMPFILE should be added.

justincormack commented 6 years ago

Ah yes I think that was newish, should add it.