about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/aix/sys/param.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-04-18 17:33:41 +0000
committerUlrich Drepper <drepper@redhat.com>2000-04-18 17:33:41 +0000
commit26223643100902ca075d5833772986278dbecfdb (patch)
tree81fded43b7a6ad90c6b2bb829a311b63ce2fafc1 /sysdeps/unix/sysv/aix/sys/param.h
parenta96c17d8f463d89db4441779a5a16c17a235f974 (diff)
downloadglibc-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.h3
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))