From 952c5c128f9efaea89d41d882c4ea3ade7df4591 Mon Sep 17 00:00:00 2001 From: zakk Date: Fri, 26 Aug 2005 04:48:05 +0000 Subject: Itsa me, quake3io! git-svn-id: svn://svn.icculus.org/quake3/trunk@2 edf5b092-35ff-0310-97b2-ce42778d08ea --- lcc/include/alpha/osf/stdarg.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 lcc/include/alpha/osf/stdarg.h (limited to 'lcc/include/alpha/osf/stdarg.h') diff --git a/lcc/include/alpha/osf/stdarg.h b/lcc/include/alpha/osf/stdarg.h new file mode 100755 index 0000000..1b4947e --- /dev/null +++ b/lcc/include/alpha/osf/stdarg.h @@ -0,0 +1,28 @@ +#ifndef __STDARG +#define __STDARG + +#if !defined(_VA_LIST) +#define _VA_LIST +typedef struct { + char *_a0; /* pointer to first homed integer arg */ + int _offset; /* byte offset of next param */ + float _tmp; +} __va_list; +#endif +typedef __va_list va_list; + +#define va_start(list, start) ((void)( \ + (list)._a0 = (__typecode(__firstarg)==1 ? \ + (char*)&__firstarg+48 : (char *)&__firstarg), \ + (list)._offset = (__typecode(start)==1 ? \ + (char*)&start+56 : (char *)&start+8)-(list)._a0)) +#define va_arg(list, mode) (*(mode *)( \ + (list)._offset += (int)((sizeof(mode)+7)&~7), \ + (__typecode(mode)==1 && sizeof(mode)==4) ? \ + ((list)._tmp = (float)*(double *)((list)._a0 + (list)._offset - \ + ((list)._offset <= 48 ? 56 : 8))), (char *)&(list)._tmp : \ + (__typecode(mode)==1 && (list)._offset <= 48) ? \ + (list)._a0 + (list)._offset - 56 : \ + (list)._a0 + (list)._offset - (int)((sizeof(mode)+7)&~7))) +#define va_end(list) ((void)0) +#endif -- cgit v1.2.3