Last active
December 11, 2015 01:29
-
-
Save FooBarWidget/4523545 to your computer and use it in GitHub Desktop.
Compile and run with: gcc -Wall test.c -o test && ./test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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