Initial import from FreeBSD RELENG_4:
[games.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
4 #include <stdio.h>
5
6 #include "pam_private.h"
7
8 int pam_acct_mgmt(pam_handle_t *pamh, int flags)
9 {
10     D(("called"));
11
12     IF_NO_PAMH("pam_acct_mgmt",pamh,PAM_SYSTEM_ERR);
13     return _pam_dispatch(pamh, flags, PAM_ACCOUNT);
14 }