blob: be0e0b8c380672c4e6c7c77bb08ea00105c278c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ISC license. */
/* OpenBSD manages to bork the fchmod declaration */
#include <skalibs/nonposix.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 ;
}
|