summaryrefslogtreecommitdiff
path: root/klibc/klibc/setresgid.c
blob: f1a8c6b45c3b1591ee20cd9f245c4b04893b4f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * setresgid.c
 */

#include <unistd.h>
#include <sys/syscall.h>

#ifdef __NR_setresgid

_syscall3(int,setresgid,gid_t,a0,gid_t,a1,gid_t,a2);

#elif defined(__NR_setresgid32)

static inline _syscall3(int,setresgid32,gid_t,a0,gid_t,a1,gid_t,a2);

int setresgid(gid_t a0, gid_t a1, gid_t a2)
{
  if ( sizeof(gid_t) == sizeof(uint32_t) ) {
    return setresgid32(a0,a1,a2);
  } else {
    uint32_t x0 = (a0 == (gid_t)-1) ? (uint32_t)-1 : a0;
    uint32_t x1 = (a1 == (gid_t)-1) ? (uint32_t)-1 : a1;
    uint32_t x2 = (a2 == (gid_t)-1) ? (uint32_t)-1 : a2;
    
    return setresgid32(x0,x1,x2);
  }
}

#endif