aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/limits.h
Commit message (Collapse)AuthorAgeFilesLines
* POSIX.1-2008 moved some constants from the XSI option to the Base.Jilles Tjoelker2011-03-041-1/+1
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=219271
* Define MQ_PRIO_MAX, it seems it is the only placeDavid Xu2005-12-021-0/+4
| | | | | | | the definition will be shared by kernel and userland. Notes: svn path=/head/; revision=153010
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-1/+1
| | | | Notes: svn path=/head/; revision=139825
* Remove advertising clause from University of California Regent's license,Warner Losh2004-04-071-4/+0
| | | | | | | | | per letter dated July 22, 1999. Approved by: core Notes: svn path=/head/; revision=127976
* Move GID/UID_MAX under __BSD_VISIBLE protection.Max Laier2004-03-151-3/+3
| | | | | | | | Requested by: bde Approved by: bms(mentor) Notes: svn path=/head/; revision=127025
* Tweak existing header and other build infrastructure to be able to buildMax Laier2004-02-261-0/+3
| | | | | | | | | | pf/pflog/pfsync as modules. Do not list them in NOTES or modules/Makefile (i.e. do not connect it to any (automatic) builds - yet). Approved by: bms(mentor) Notes: svn path=/head/; revision=126263
* sys/sys/limits.h:Alexander Kabaev2003-05-191-8/+10
| | | | | | | | | | | | | | | | | | - Fix visibilty test for LONG_BIT and WORD_BIT. `#if defined(__FOO_VISIBLE)' is alays wrong because __FOO_VISIBLE is always defined (to 0 for invisibility). sys/<arch>/include/limits.h sys/<arch>/include/_limits.h: - Style fixes. Submitted by: bde Reviewed by: bsdmike Approved by: re (scottl) Notes: svn path=/head/; revision=115164
* Style fixes.Alexander Kabaev2003-05-041-26/+8
| | | | | | | | | | | | Remove DBL_DIG, DBL_MIN, DBL_MAX and their FLT_ counterparts, they were marked for deprecation ever since SUSv1 at least. Only define ULLONG_MIN/MAX and LLONG_MAX if long long type is supported. Restore a lost comment in MI _limits.h file and remove it from sys/limits.h where it does not belong. Notes: svn path=/head/; revision=114678
* Properly define CHAR_MIN/CHAR_MAX taking into account whether orAlexander Kabaev2003-04-281-2/+8
| | | | | | | not __CHAR_UNSIGNED__ is defined. Notes: svn path=/head/; revision=114184
* Fix a typo in UINT_MAX definition.Alexander Kabaev2003-04-241-1/+1
| | | | Notes: svn path=/head/; revision=113970
* Add a new sys/limits.h file which in turn depends on machine/_limits.hAlexander Kabaev2003-04-231-0/+107
to get actual constant values. This is in preparation for machine/limits.h retirement. Discussed on: standards@ Submitted by: Craig Rodrigues <rodrigc@attbi.com> (*) Modified by: kan Notes: svn path=/head/; revision=113941