diff options
Diffstat (limited to 'posix/bits')
-rw-r--r-- | posix/bits/posix1_lim.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/posix/bits/posix1_lim.h b/posix/bits/posix1_lim.h index 71a7cc45a3..ee84b94a70 100644 --- a/posix/bits/posix1_lim.h +++ b/posix/bits/posix1_lim.h @@ -118,13 +118,16 @@ /* Maximum length of login name. */ #define _POSIX_LOGIN_NAME_MAX 9 +/* Maximum clock resolution in nanoseconds. */ +#define _POSIX_CLOCKRES_MIN 20000000 + /* Get the implementation-specific values for the above. */ #include <bits/local_lim.h> #ifndef SSIZE_MAX -#define SSIZE_MAX INT_MAX +# define SSIZE_MAX INT_MAX #endif @@ -132,7 +135,7 @@ The current maximum can be got from `sysconf'. */ #ifndef NGROUPS_MAX -#define NGROUPS_MAX _POSIX_NGROUPS_MAX +# define NGROUPS_MAX _POSIX_NGROUPS_MAX #endif #endif /* bits/posix1_lim.h */ |