X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flimits.h;h=574b406ad33555c067763bd938612a92fe5135ba;hb=b7d3210196ff3508601a9f57ad18315eb25f7330;hp=f8314a5685d36017191123b12f6de7454c542fd1;hpb=d5142642b8e6c45449158efdb8f8e87af4dafde8;p=musl diff --git a/include/limits.h b/include/limits.h index f8314a56..574b406a 100644 --- a/include/limits.h +++ b/include/limits.h @@ -9,7 +9,7 @@ /* Support signed or unsigned plain-char */ -#ifdef __CHAR_UNSIGNED__ +#if '\0'-1 > 0 #define CHAR_MIN 0 #define CHAR_MAX 255 #else @@ -40,7 +40,9 @@ || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define PIPE_BUF 4096 +#ifdef PAGE_SIZE #define PAGESIZE PAGE_SIZE +#endif #define FILESIZEBITS 64 #define NAME_MAX 255 #define SYMLINK_MAX 255 @@ -82,12 +84,18 @@ #define NL_ARGMAX 9 #define NL_LANGMAX 32 #define NL_MSGMAX 32767 -#define NL_NMAX (MB_LEN_MAX*4) #define NL_SETMAX 255 #define NL_TEXTMAX 2048 #endif +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) \ + || (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE+0 < 700) + +#define NL_NMAX 16 + +#endif + /* POSIX/SUS requirements follow. These numbers come directly * from SUS and have nothing to do with the host system. */