blind

suckless command-line video editing utility
git clone git://git.suckless.org/blind
Log | Files | Refs | README | LICENSE

eopen.h (235B)


      1 /* See LICENSE file for copyright and license details. */
      2 #include <fcntl.h>
      3 
      4 #define eopen(...)  enopen(1, __VA_ARGS__)
      5 #define enopen(...) xenopen(__VA_ARGS__, 0)
      6 
      7 int xenopen(int status, const char *path, int flags, int mode, ...);