blob: 109826e370d332cb0248d4087f2dfd9bd64a49c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* ISC license. */
/* OpenBSD manages to bork the fchmod declaration */
#include <skalibs/nonposix.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <skalibs/djbunix.h>
int fd_chmod (int fd, unsigned int mode)
{
int r ;
do
r = fchmod(fd, (mode_t)mode) ;
while ((r == -1) && (errno == EINTR)) ;
return r ;
}
|