diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-18 17:33:41 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-18 17:33:41 +0000 |
commit | 26223643100902ca075d5833772986278dbecfdb (patch) | |
tree | 81fded43b7a6ad90c6b2bb829a311b63ce2fafc1 /sysdeps/unix/sysv/aix/sys/param.h | |
parent | a96c17d8f463d89db4441779a5a16c17a235f974 (diff) | |
download | glibc-26223643100902ca075d5833772986278dbecfdb.tar.gz glibc-26223643100902ca075d5833772986278dbecfdb.tar.xz glibc-26223643100902ca075d5833772986278dbecfdb.zip |
AIX tcsetattr implementation.
Diffstat (limited to 'sysdeps/unix/sysv/aix/sys/param.h')
-rw-r--r-- | sysdeps/unix/sysv/aix/sys/param.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/aix/sys/param.h b/sysdeps/unix/sysv/aix/sys/param.h index e128d8d60b..66f2127fbe 100644 --- a/sysdeps/unix/sysv/aix/sys/param.h +++ b/sysdeps/unix/sysv/aix/sys/param.h @@ -13,6 +13,9 @@ /* The pagesize is 4096. */ #define EXEC_PAGESIZE 4096 +/* maximum number of supplemental groups. */ +#define NGROUPS 32 + /* Macros for min/max. */ #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b)) |