blob: a70c5373cebdeb068c0bcd6d90c3f0bedf0023d5 (
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)
{
register int r ;
do
r = fchmod(fd, (mode_t)mode) ;
while ((r == -1) && (errno == EINTR)) ;
return r ;
}
|