1
2/*
3 * stdarg.h
4 *
5 * Copyright (c) 1991 Symantec Corporation. All rights reserved.
6 *
7 */
8
9#pragma once
10
11typedef void *va_list;
12
13#define __va(arg) &arg + 1
14#define va_start(p, arg) p = __va(arg)
15#define va_arg(p, type) *(* (type **) &p)++
16#define va_end(p)