/spim/include/ape/stdarg.h: ape for spim

This commit is contained in:
adventuresin9 2023-03-07 04:20:38 +00:00
parent 6d9a739ab6
commit f7a296922b

12
spim/include/ape/stdarg.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef __STDARG
#define __STDARG
typedef char *va_list;
#define va_start(list, start) list = (char *)(&(start)+1)
#define va_end(list)
#define va_arg(list, mode) (sizeof(mode)==1 ? ((mode *) (list += 4))[-4] : \
sizeof(mode)==2 ? ((mode *) (list += 4))[-2] : ((mode *) (list += sizeof(mode)))[-1])
#define va_copy(dst, src) ((dst) = (src))
#endif /* __STDARG */