kern
annotate src/klibc/stdarg.h @ 30:a2c6110bd24b
refactored the code a bit, and merged with the malloc implementation branch
author | John Tsiombikas <nuclear@siggraph.org> |
---|---|
date | Fri, 27 May 2011 22:09:10 +0300 |
parents | |
children |
rev | line source |
---|---|
nuclear@6 | 1 #ifndef STDARG_H_ |
nuclear@6 | 2 #define STDARG_H_ |
nuclear@6 | 3 |
nuclear@6 | 4 /* Assumes that arguments are passed on the stack 4-byte aligned */ |
nuclear@6 | 5 |
nuclear@6 | 6 typedef int* va_list; |
nuclear@6 | 7 |
nuclear@6 | 8 #define va_start(ap, last) ((ap) = (int*)&(last) + 1) |
nuclear@6 | 9 #define va_arg(ap, type) (*(type*)(ap)++) |
nuclear@6 | 10 #define va_end(ap) |
nuclear@6 | 11 |
nuclear@6 | 12 #endif /* STDARG_H_ */ |