skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

open_readat.c (188B)


      1 /* ISC license. */
      2 
      3 #include <skalibs/fcntl.h>
      4 #include <skalibs/unix-transactional.h>
      5 
      6 int open_readat (int fd, char const *name)
      7 {
      8   return open2_at(fd, name, O_RDONLY | O_NONBLOCK) ;
      9 }