Add support for using time64 on big-endian machines.
[uclibc-ng.git] / libc / sysdeps / linux / common / setegid.c
blobeae57f5852ab846b4c45ca07e7a8e5b2c58d8d44
1 /*
2 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
4 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
5 */
7 #include <unistd.h>
8 #include <stdio.h>
9 #include <errno.h>
10 #include <grp.h>
11 #include <sys/types.h>
12 #include <sys/syscall.h>
15 #if !defined __UCLIBC_LINUX_SPECIFIC__
16 #undef __NR_setresgid
17 #undef __NR_setresgid32
18 #endif
20 int setegid(gid_t gid)
22 int result;
24 if (gid == (gid_t) ~0)
26 __set_errno (EINVAL);
27 return -1;
30 #if (defined __NR_setresgid || defined __NR_setresgid32) && defined __USE_GNU
31 result = setresgid(-1, gid, -1);
32 if (result == -1 && errno == ENOSYS)
33 /* Will also set the saved group ID if egid != gid,
34 * making it impossible to switch back...*/
35 #endif
36 result = setregid(-1, gid);
38 return result;