Fix the typedef of va_list.

This commit is contained in:
Ruslan Ermilov 2001-10-19 20:07:46 +00:00
parent 5207734205
commit c3917acb86
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=85191

View File

@ -37,7 +37,9 @@
#ifndef _STDARG_H_
#define _STDARG_H_
typedef char *va_list;
#include <machine/ansi.h>
typedef _BSD_VA_LIST_ va_list;
#define __va_size(type) \
(((sizeof(type) + sizeof(int) - 1) / sizeof(int)) * sizeof(int))