summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2013-06-02 16:54:11 +0000
committerguenther <guenther@openbsd.org>2013-06-02 16:54:11 +0000
commit5fe33b1b97a44072c91fe66fad46a8a5c33078e9 (patch)
treeb14fdeafce86c4081dfceef23810a87ccb2967b7 /sys
parentFix descriptions of structures (diff)
downloadwireguard-openbsd-5fe33b1b97a44072c91fe66fad46a8a5c33078e9.tar.xz
wireguard-openbsd-5fe33b1b97a44072c91fe66fad46a8a5c33078e9.zip
Hide members of __va_list in the implementation namespace
ok miod@
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/alpha/include/_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/alpha/include/_types.h b/sys/arch/alpha/include/_types.h
index d2a1d64d440..1da98c3135b 100644
--- a/sys/arch/alpha/include/_types.h
+++ b/sys/arch/alpha/include/_types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: _types.h,v 1.16 2012/11/05 19:39:34 miod Exp $ */
+/* $OpenBSD: _types.h,v 1.17 2013/06/02 16:54:11 guenther Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -131,9 +131,9 @@ typedef int __timer_t;
typedef __builtin_va_list __va_list;
#else
typedef struct {
- char *base;
- int offset;
- int pad;
+ char *__base;
+ int __offset;
+ int __pad;
} __va_list;
#endif