Plan 9 from Bell Labs’s /usr/web/sources/contrib/anothy/src/lib/djb-ape/unix/tryshsgr.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


main()
{
  short x[4];
 
  x[0] = x[1] = 1;
  if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1);
 
  if (getgroups(1,x) == -1) _exit(1);
  if (x[1] != 1) _exit(1);
  x[1] = 2;
  if (getgroups(1,x) == -1) _exit(1);
  if (x[1] != 2) _exit(1);
  _exit(0);
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to [email protected].