mirror of https://github.com/zrafa/xinu-avr.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
459 B
15 lines
459 B
/** |
|
* @file stdarg.h |
|
* @provides va_copy, va_start, va_arg, va_end. |
|
* |
|
* $Id: stdarg.h 2020 2009-08-13 17:50:08Z mschul $ |
|
*/ |
|
/* Embedded Xinu, Copyright (C) 2009. All rights reserved. */ |
|
|
|
/* GCC-specific varargs */ |
|
typedef __builtin_va_list va_list; |
|
|
|
#define va_copy(dst, src) __builtin_va_copy(dst, src) |
|
#define va_start(last, va) __builtin_va_start(last, va) |
|
#define va_arg(va, type) __builtin_va_arg(va, type) |
|
#define va_end(va) __builtin_va_end(va)
|
|
|