diff options
author | cinap_lenrek <devnull@localhost> | 2011-03-30 15:08:40 +0000 |
---|---|---|
committer | cinap_lenrek <devnull@localhost> | 2011-03-30 15:08:40 +0000 |
commit | 9b675a9941c8cc7957b3996e10fefdf40be0eb7e (patch) | |
tree | 2a55aaed627a642b2283434cd0d4bb7264208a00 /sparc/include/ape/stdarg.h | |
parent | 55613b56d78d8e349174cbd576e346284977c362 (diff) | |
download | plan9front-9b675a9941c8cc7957b3996e10fefdf40be0eb7e.tar.xz |
continue...
Diffstat (limited to 'sparc/include/ape/stdarg.h')
-rw-r--r-- | sparc/include/ape/stdarg.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sparc/include/ape/stdarg.h b/sparc/include/ape/stdarg.h new file mode 100644 index 000000000..b7e2282e6 --- /dev/null +++ b/sparc/include/ape/stdarg.h @@ -0,0 +1,11 @@ +#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]) + +#endif /* __STDARG */ |