de-errno
[dragonfly.git] / contrib / libpam / libpam / pam_account.c
1 /* pam_account.c - PAM Account Management */
2 /* $FreeBSD: src/contrib/libpam/libpam/pam_account.c,v 1.1.1.1.6.2 2001/06/11 15:28:12 markm Exp $ */
3 /* $DragonFly: src/contrib/libpam/libpam/Attic/pam_account.c,v 1.2 2003/06/17 04:24:03 dillon Exp $ */
4
5 #include <stdio.h>
6
7 #include "pam_private.h"
8
9 int pam_acct_mgmt(pam_handle_t *pamh, int flags)
10 {
11     D(("called"));
12
13     IF_NO_PAMH("pam_acct_mgmt",pamh,PAM_SYSTEM_ERR);
14     return _pam_dispatch(pamh, flags, PAM_ACCOUNT);
15 }