summaryrefslogtreecommitdiff
path: root/include/bsd_auth.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2006-01-06 18:53:07 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2006-01-06 18:53:07 +0000
commit4f6f4abee953638d3409775c050227c9537c9e8c (patch)
tree38d3a984a5a051627704f25d9151930244be39c5 /include/bsd_auth.h
parenta835e97a88caf4a2d77874683640dd0e6c0225d1 (diff)
Adapt things to use __type_t instead of _BSD_TYPE_T_
Add new sys/_types.h header Include machine/_types.h or sys/_types.h where applicable
Diffstat (limited to 'include/bsd_auth.h')
-rw-r--r--include/bsd_auth.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/bsd_auth.h b/include/bsd_auth.h
index 800ec13ccfb..31cb5af8d5f 100644
--- a/include/bsd_auth.h
+++ b/include/bsd_auth.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bsd_auth.h,v 1.8 2002/08/30 08:50:01 espie Exp $ */
+/* $OpenBSD: bsd_auth.h,v 1.9 2006/01/06 18:53:04 millert Exp $ */
/*-
* Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved.
@@ -37,6 +37,8 @@
#ifndef _BSD_AUTH_H_
#define _BSD_AUTH_H_
+#include <machine/_types.h> /* for __va_list */
+
typedef struct auth_session_t auth_session_t;
typedef enum {
@@ -84,7 +86,7 @@ int auth_call(auth_session_t *, char *, ...)
int auth_setdata(auth_session_t *, void *, size_t);
int auth_setoption(auth_session_t *, char *, char *);
int auth_setpwd(auth_session_t *, struct passwd *pwd);
-void auth_set_va_list(auth_session_t *, _BSD_VA_LIST_);
+void auth_set_va_list(auth_session_t *, __va_list);
struct passwd *auth_getpwd(auth_session_t *);