aboutsummaryrefslogtreecommitdiff
path: root/sys/alpha/include/varargs.h
Commit message (Collapse)AuthorAgeFilesLines
* First pass at removing Alpha kernel support.John Baldwin2006-05-111-85/+0
| | | | Notes: svn path=/head/; revision=158458
* netchild's mega-patch to isolate compiler dependencies into a centralJoerg Wunsch2005-03-021-7/+9
| | | | | | | | | | | | | | | | | | | place. This moves the dependency on GCC's and other compiler's features into the central sys/cdefs.h file, while the individual source files can then refer to #ifdef __COMPILER_FEATURE_FOO where they by now used to refer to #if __GNUC__ > 3.1415 && __BARC__ <= 42. By now, GCC and ICC (the Intel compiler) have been actively tested on IA32 platforms by netchild. Extension to other compilers is supposed to be possible, of course. Submitted by: netchild Reviewed by: various developers on arch@, some time ago Notes: svn path=/head/; revision=143063
* Standardize idempotentcy ifdefs. Consistently use _MACHINE_VARARGS_H_Alexander Kabaev2003-09-011-3/+3
| | | | | | | symbol. Notes: svn path=/head/; revision=119628
* Add conditionals to allow va_list to be defined in other headers.Mike Barcroft2002-10-061-0/+4
| | | | Notes: svn path=/head/; revision=104584
* o Merge <machine/ansi.h> and <machine/types.h> into a new headerMike Barcroft2002-08-211-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 Notes: svn path=/head/; revision=102227
* Gcc 3.1 varargs support.David E. O'Brien2002-05-101-3/+20
| | | | Notes: svn path=/head/; revision=96317
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Header files which are linked from /usr/include to /usr/include/machine.John Birrell1998-01-101-0/+62
NetBSD's endian.h needs sys/types.h for the typedefs that are used to get htonl() correct when a long is 64 bits. Notes: svn path=/head/; revision=32404