summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/defines.h b/defines.h
index c40096d31..ebe8812ae 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
1#ifndef _DEFINES_H 1#ifndef _DEFINES_H
2#define _DEFINES_H 2#define _DEFINES_H
3 3
4/* $Id: defines.h,v 1.62 2001/04/05 17:15:08 stevesk Exp $ */ 4/* $Id: defines.h,v 1.63 2001/05/09 00:38:21 mouring Exp $ */
5 5
6/* Some platforms need this for the _r() functions */ 6/* Some platforms need this for the _r() functions */
7#if !defined(_REENTRANT) && !defined(SNI) 7#if !defined(_REENTRANT) && !defined(SNI)
@@ -92,8 +92,12 @@ enum
92#endif 92#endif
93 93
94#ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */ 94#ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */
95#ifdef NGROUPS
96#define NGROUPS_MAX NGROUPS
97#else
95#define NGROUPS_MAX 0 98#define NGROUPS_MAX 0
96#endif 99#endif
100#endif
97 101
98#ifndef O_NONBLOCK /* Non Blocking Open */ 102#ifndef O_NONBLOCK /* Non Blocking Open */
99# define O_NONBLOCK 00004 103# define O_NONBLOCK 00004