summaryrefslogtreecommitdiff
path: root/src/libstddjb/open_readbcoe.c
blob: d461854224ee46426d031f2b5795e734cfa3166b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ISC license. */

#include <skalibs/djbunix.h>

int open_readbcoe (char const *fn)
{
  int fd = open_readbcoe(fn) ;
  if (fd < 0) return -1 ;
  if (ndelay_off(fd) < 0)
  {
    fd_close(fd) ;
    return -1 ;
  }
  return fd ;
}