#
480020cd |
| 21-Jan-2019 |
dholland <dholland@NetBSD.org> |
Fix wrong scoping of {U,}LLONG_MAX. More cases, not just amd64. PR 53298 from Roberto E. Vargas Caballero.
|
#
caafbf4e |
| 11-Apr-2013 |
christos <christos@NetBSD.org> |
add missing SSIZE_MIN
|
#
7484a2db |
| 28-Mar-2012 |
christos <christos@NetBSD.org> |
- Normalize inclusion protection (remove) - Move CHAR_{MIN,MAX} to a common file. - Fix broken comments
|
#
9efec5bc |
| 07-Jun-2010 |
tnozaki <tnozaki@NetBSD.org> |
1. MB_LEN_MAX switch MD to MI. 2. unfortunately hppa's MB_LEN_MAX is defined incorrectly 6 instead of 32 so we have to add more setlocale(3) __RENAME func, __setlocale50. 3. move setlocale1.c and
1. MB_LEN_MAX switch MD to MI. 2. unfortunately hppa's MB_LEN_MAX is defined incorrectly 6 instead of 32 so we have to add more setlocale(3) __RENAME func, __setlocale50. 3. move setlocale1.c and setlocale32.c to lib/libc/compat/locale/* prepareing for next libc major crunk. 4. bump libc minor version.
show more ...
|
#
9906ead4 |
| 29-Aug-2008 |
matt <matt@NetBSD.org> |
Drop support for compiling a.out kernel. Elves rule!
|
#
d974db0a |
| 17-Oct-2007 |
garbled <garbled@NetBSD.org> |
Merge the ppcoea-renovation branch to HEAD.
This branch was a major cleanup and rototill of many of the various OEA cpu based PPC ports that focused on sharing as much code as possible between the v
Merge the ppcoea-renovation branch to HEAD.
This branch was a major cleanup and rototill of many of the various OEA cpu based PPC ports that focused on sharing as much code as possible between the various ports to eliminate near-identical copies of files in every tree. Additionally there is a new PIC system that unifies the interface to interrupt code for all different OEA ppc arches. The work for this branch was done by a variety of people, too long to list here.
TODO: bebox still needs work to complete the transition to -renovation. ofppc still needs a bunch of work, which I will be looking at. ev64260 still needs to be renovated amigappc was not attempted.
NOTES: pmppc was removed as an arch, and moved to a evbppc target.
show more ...
|
#
0e0fe2c3 |
| 31-Aug-2007 |
drochner <drochner@NetBSD.org> |
Fix definitions of UCHAR_MAX/USHRT_MAX and related types. C99 requires that these definitions promote to (signed/unsigned) integer the same way as the types the definition is for. And since unsigned
Fix definitions of UCHAR_MAX/USHRT_MAX and related types. C99 requires that these definitions promote to (signed/unsigned) integer the same way as the types the definition is for. And since unsigned char/short fit into an "int" on all our archs and thus promote to signed int, the definitions must not be unsigned. Fixes PR lib/31306 by Neil Booth.
show more ...
|
#
95e1ffb1 |
| 11-Dec-2005 |
christos <christos@NetBSD.org> |
merge ktrace-lwp.
|
#
aad01611 |
| 07-Aug-2003 |
agc <agc@NetBSD.org> |
Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22364, verified by myself.
|
#
4be7a2dc |
| 28-Apr-2003 |
bjh21 <bjh21@NetBSD.org> |
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined by the application, all NetBSD interfaces are made visible, even if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined by the application, all NetBSD interfaces are made visible, even if some other feature-test macro (like _POSIX_C_SOURCE) is defined. <sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE, _POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve existing behaviour.
This has two major advantages: + Programs that require non-POSIX facilities but define _POSIX_C_SOURCE can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS. + It makes most of the #ifs simpler, in that they're all now ORs of the various macros, rather than having checks for (!defined(_ANSI_SOURCE) || !defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where _NETBSD_SOURCE wasn't defined, but there were some places where the current semantics were clearly mad, and retaining them was harder than correcting them. In particular, I've mostly normalised things so that _ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE, _XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in tech-userlevel for a week.
show more ...
|
#
c544d84b |
| 15-Apr-2001 |
kleink <kleink@NetBSD.org> |
Catch up with ansi.h rev. 1.12: define SIZE_T_MAX and SSIZE_MAX as long integer constants in ELF environments.
|
#
51a53de0 |
| 08-Aug-2000 |
tshiozak <tshiozak@NetBSD.org> |
Preparation for the future introduction of multibyte locale. - MB_LEN_MAX is increased to 32. - To ensure binary compatibility for old executables under multibyte locale, versioned setlocale is
Preparation for the future introduction of multibyte locale. - MB_LEN_MAX is increased to 32. - To ensure binary compatibility for old executables under multibyte locale, versioned setlocale is added. - __mb_len_cur definision is added in setlocale.c and enable it in stdlib.h . It is also important for multibyte locale stuffs, but I just forgot.
show more ...
|
#
ad7dbd82 |
| 07-Mar-2000 |
kleink <kleink@NetBSD.org> |
Define ISO C99 (unsigned) long long (min, max) symbols.
|
#
546365a2 |
| 06-Aug-1998 |
kleink <kleink@NetBSD.org> |
_POSIX_SOURCE -> _POSIX_C_SOURCE
|
#
6f57e5c5 |
| 09-Jan-1998 |
perry <perry@NetBSD.org> |
multiple include protect machine/limits.h, fixes pr 4473 (from Mika Nystrom)
|
#
1dab4709 |
| 31-Dec-1995 |
ragge <ragge@NetBSD.org> |
Changes requested by Charles Hannum.
|
#
ae74b4eb |
| 28-May-1995 |
ragge <ragge@NetBSD.org> |
Changed *_MIN to be correct.
|
#
172d1087 |
| 16-Apr-1995 |
ragge <ragge@NetBSD.org> |
Added SSIZE_MAX, SIZE_T_MAX, UQUAD_MAX, QUAD_MAX and QUAD_MIN.
|
#
d62187c0 |
| 26-Oct-1994 |
cgd <cgd@NetBSD.org> |
new RCS ID format.
|
#
badcc17a |
| 05-Oct-1994 |
jtc <jtc@NetBSD.org> |
Add constants required by XPG3
|
#
8026fb53 |
| 02-Aug-1994 |
ragge <ragge@NetBSD.org> |
Initial VAX port merging.
|