summaryrefslogtreecommitdiff
path: root/src/sysdeps/trysetgroups.c
blob: ffea041747a759da8e4532badcf5d9c0f751e7a3 (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
/* ISC license. */

#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE

#ifndef _BSD_SOURCE
#define _BSD_SOURCE
#endif

#ifndef _NETBSD_SOURCE
#define _NETBSD_SOURCE
#endif

#ifndef __EXTENSIONS__
#define __EXTENSIONS__
#endif

#include <unistd.h>
#include <grp.h>

int main (void)
{
  gid_t g = 0 ;
  setgroups(1, &g) ;
  return 0 ;
}