Skip to content

Instantly share code, notes, and snippets.

@FooBarWidget
Last active December 11, 2015 01:29
Show Gist options
  • Save FooBarWidget/4523545 to your computer and use it in GitHub Desktop.
Save FooBarWidget/4523545 to your computer and use it in GitHub Desktop.
Compile and run with: gcc -Wall test.c -o test && ./test
/*
Compile and run with: gcc -Wall test.c -o test && ./test
*/
#include <sys/param.h>
#include <unistd.h>
#include <stdio.h>
int
main() {
printf("NGROUPS_MAX = %d\n", NGROUPS_MAX);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment