diff options
| author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-05-04 16:11:48 +0200 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-05-04 16:11:48 +0200 |
| commit | 986886f2b8ab4a7e1b3d66e99934d8fdab537be9 (patch) | |
| tree | c49e9711e7229a8d12f5b5b0ab38b5bd6c27b711 /alpha/include/ape/stdarg.h | |
| parent | f7703d6971383c39f981f5676a4e28a6371c3997 (diff) | |
| download | plan9front-986886f2b8ab4a7e1b3d66e99934d8fdab537be9.tar.xz | |
retire the dec alpha port
Diffstat (limited to 'alpha/include/ape/stdarg.h')
| -rw-r--r-- | alpha/include/ape/stdarg.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/alpha/include/ape/stdarg.h b/alpha/include/ape/stdarg.h deleted file mode 100644 index f4ff6c734..000000000 --- a/alpha/include/ape/stdarg.h +++ /dev/null @@ -1,17 +0,0 @@ -#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))[-1]:\ - sizeof(mode)==2?\ - ((mode*)(list += 4))[-1]:\ - sizeof(mode)>4?\ - ((mode*)(list = (char*)((long)(list+7) & ~7) + sizeof(mode)))[-1]:\ - ((mode*)(list += sizeof(mode)))[-1]) - -#endif /* __STDARG */ |
