File: getgroups.h

package info (click to toggle)
rc 1.7.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 856 kB
  • ctags: 814
  • sloc: ansic: 7,121; sh: 714; yacc: 124; makefile: 94
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