URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [uclinux/] [uC-libc/] [include/] [varargs.h] - Rev 199
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef __VARARGS_H #define __VARARGS_H typedef char *va_list; #define va_dcl va_list va_alist; #define va_start(ap) ap = (va_list)&va_alist #define va_arg(ap,t) ((t *)(ap += sizeof(t)))[-1] #define va_end(ap) ap = NULL #endif
Go to most recent revision | Compare with Previous | Blame | View Log