doc: Update for OpenBSD 6.0, 6.7.
[gnulib.git] / doc / posix-headers / limits.texi
blob83d6e89b2c48c0be0447126d90891c667230baeb
1 @node limits.h
2 @section @file{limits.h}
4 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html}
6 Gnulib module: limits-h or gethostname
8 Portability problems fixed by Gnulib module @code{limits-h}:
9 @itemize
10 @item
11 The macros @code{LLONG_MIN}, @code{LLONG_MAX}, @code{ULLONG_MAX} are not
12 defined on some platforms:
13 older glibc systems (e.g. Fedora 1), AIX 5.1, HP-UX 11, IRIX 6.5, OpenVMS.
14 @item
15 The macros @code{WORD_BIT}, @code{LONG_BIT} are not defined on some platforms:
16 glibc 2.11 without @code{-D_GNU_SOURCE}, Cygwin, mingw, MSVC 14.
17 @item
18 Macros like @code{CHAR_WIDTH} are not defined on some platforms:
19 glibc 2.24, NetBSD 9.0, many others.
20 @end itemize
22 Portability problems fixed by Gnulib module @code{gethostname}:
23 @itemize
24 @item
25 The @code{HOST_NAME_MAX} macro is not defined on some platforms:
26 Mac OS X 10.13, FreeBSD 6.0, NetBSD 9.0, OpenBSD 6.7, AIX 5.1, HP-UX 11,
27 IRIX 6.5, Solaris 11.4, Cygwin 1.5.x, mingw, MSVC 14.
28 @end itemize
30 Portability problems not fixed by Gnulib:
31 @itemize
32 @item
33 The macro @code{SSIZE_MAX} has the wrong type,
34 albeit with the correct value:
35 32-bit glibc 2.24 (on some architectures), Cygwin 2.5.2.
36 @item
37 The macro @code{SSIZE_MAX} is not defined on some platforms:
38 MSVC 14.
39 @end itemize
41 For @code{PATH_MAX}, Gnulib provides a module @code{pathmax} with a header
42 file @code{"pathmax.h"}.  It defines @code{PATH_MAX} to a constant on
43 platforms with a file name length limit.