blob: 780f34562a80c80fa8fc46a6fa174cac43b39571 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ISC license. */
#include <skalibs/nonposix.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
int open2 (char const *s, unsigned int flags)
{
register int r ;
do
r = open(s, (int)flags) ;
while ((r == -1) && (errno == EINTR)) ;
return r ;
}
|