blob: 1b42ef6d009ebf5c36f01e5d86c70545a36c385c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $OpenBSD: stdarg.h,v 1.2 2006/01/06 18:53:05 millert Exp $ */
#ifndef _M88K_STDARGS_H_
#define _M88K_STDARGS_H_
#include <machine/_types.h>
#ifndef _STDARG_H
#define _STDARG_H
#endif
#include <machine/va-m88k.h>
typedef __va_list va_list;
#endif /* _M88K_STDARGS_H_ */
|