diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 03:54:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 03:54:39 +0000 |
commit | f12226068d16673eea9adafe99388f1061d3309f (patch) | |
tree | 90cb542d279e793d072ffc6e9f1f1add1f07179e /sys/arch/alpha/include/ansi.h | |
parent | 470d0389b66fade522060561cc0c6ba36e01e7cb (diff) |
update to netbsd
Diffstat (limited to 'sys/arch/alpha/include/ansi.h')
-rw-r--r-- | sys/arch/alpha/include/ansi.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/alpha/include/ansi.h b/sys/arch/alpha/include/ansi.h index c3e6e2bfbf4..7502ca628f9 100644 --- a/sys/arch/alpha/include/ansi.h +++ b/sys/arch/alpha/include/ansi.h @@ -1,4 +1,4 @@ -/* $NetBSD: ansi.h,v 1.2 1995/02/16 03:08:04 cgd Exp $ */ +/* $NetBSD: ansi.h,v 1.3 1995/11/23 02:35:41 cgd Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -52,11 +52,11 @@ #define _BSD_SIZE_T_ unsigned long /* sizeof() */ #define _BSD_SSIZE_T_ long /* byte count or error */ #define _BSD_TIME_T_ int /* time() */ -struct __va_list { +typedef struct { char *base; long offset; -}; -#define _BSD_VA_LIST_ struct __va_list /* va_list */ +} __va_list; +#define _BSD_VA_LIST_ __va_list /* va_list */ /* * Runes (wchar_t) is declared to be an ``int'' instead of the more natural |