blob: 88341ba86af5690ac0c129c81a343cb86e9aac96 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/* vi: set sw=4 ts=4: */
2/*
3 * setgid() for uClibc
4 *
5 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6 *
7 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
8 */
9
10#include <sys/syscall.h>
11#include <unistd.h>
12#include <bits/wordsize.h>
13
14#if (__WORDSIZE == 32 && defined(__NR_setgid32)) || __WORDSIZE == 64
15# ifdef __NR_setgid32
16# undef __NR_setgid
17# define __NR_setgid __NR_setgid32
18# endif
19
20_syscall1(int, setgid, gid_t, gid)
21
22#else
23
24# define __NR___syscall_setgid __NR_setgid
25static __inline__ _syscall1(int, __syscall_setgid, __kernel_gid_t, gid)
26
27int setgid(gid_t gid)
28{
29 if (gid == (gid_t) ~ 0 || gid != (gid_t) ((__kernel_gid_t) gid)) {
30 __set_errno(EINVAL);
31 return -1;
32 }
33 return (__syscall_setgid(gid));
34}
35#endif