File: getgroups.h

package info (click to toggle)
rc 1.7.4%2B97.gceb59bb-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 800 kB
  • sloc: ansic: 7,965; yacc: 136; sh: 133; makefile: 49; perl: 25; sed: 5
file content (10 lines) | stat: -rw-r--r-- 318 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
#if HAVE_GETGROUPS
#if HAVE_POSIX_GETGROUPS
/* We love POSIX. */
#else
/* OK, so you've got getgroups, but you don't have the POSIX semantics
of a zero first argument.  The conclusion is that you're on a reasonably
pure BSD system, and we can include <sys/param.h> for NGROUPS. */
#include <sys/param.h>
#endif
#endif