stdarg.h (abbd8902334e8c6409384593b4a2c81f939b47b4) | stdarg.h (86954511d26c1e6cc6d3f386e055458947f4baae) |
---|---|
1/*- 2 * Copyright (c) 2002 David E. O'Brien. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. --- 27 unchanged lines hidden (view full) --- 36typedef __va_list va_list; 37 38#define va_start(ap, last) \ 39 __builtin_stdarg_start((ap), (last)) 40 41#define va_arg(ap, type) \ 42 __builtin_va_arg((ap), type) 43 | 1/*- 2 * Copyright (c) 2002 David E. O'Brien. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. --- 27 unchanged lines hidden (view full) --- 36typedef __va_list va_list; 37 38#define va_start(ap, last) \ 39 __builtin_stdarg_start((ap), (last)) 40 41#define va_arg(ap, type) \ 42 __builtin_va_arg((ap), type) 43 |
44#define va_copy(dest, src) \ 45 __builtin_va_copy((dest), (src)) 46 |
|
44#define va_end(ap) \ 45 __builtin_va_end(ap) 46 47#endif /* !_MACHINE_STDARG_H_ */ | 47#define va_end(ap) \ 48 __builtin_va_end(ap) 49 50#endif /* !_MACHINE_STDARG_H_ */ |