Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | o Add conditionals to allow va_list to be defined in other headers. | mike | 2002-10-06 | 1 | -3/+11 |
| | | | | | o Standardize on _MACHINE_STDARG_H_ to allow multiple header includes. o Restrict the definition of va_copy() to C99 environments. | ||||
* | Implement C99's va_copy() macro. | mike | 2002-09-18 | 1 | -0/+3 |
| | |||||
* | o Merge <machine/ansi.h> and <machine/types.h> into a new header | mike | 2002-08-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | called <machine/_types.h>. o <machine/ansi.h> will continue to live so it can define MD clock macros, which are only MD because of gratuitous differences between architectures. o Change all headers to make use of this. This mainly involves changing: #ifdef _BSD_FOO_T_ typedef _BSD_FOO_T_ foo_t; #undef _BSD_FOO_T_ #endif to: #ifndef _FOO_T_DECLARED typedef __foo_t foo_t; #define _FOO_T_DECLARED #endif Concept by: bde Reviewed by: jake, obrien | ||||
* | Gcc 3.1 varargs support. | obrien | 2002-05-10 | 1 | -0/+16 |
| | |||||
* | Cleanup of the stdarg code. | mp | 2001-10-19 | 1 | -35/+3 |
| | | | | Submitted by: ru | ||||
* | Add support for the gcc-2.95 stdarg implementation. | mp | 2001-10-18 | 1 | -0/+29 |
| | |||||
* | Bring in NetBSD code used in the PowerPC port. | benno | 2001-06-10 | 1 | -0/+123 |
Reviewed by: obrien, dfr Obtained from: NetBSD |