File indexing completed on 2024-03-24 17:02:41

0001 /*
0002     SPDX-FileCopyrightText: 2015 Samuel Gaist <samuel.gaist@edeltech.ch
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef PAM_DARWIN_H
0008 #define PAM_DARWIN_H
0009 
0010 #include <security/pam_modules.h>
0011 
0012 void pam_vsyslog(const pam_handle_t *ph, int priority, const char *fmt, va_list args);
0013 void pam_syslog(const pam_handle_t *ph, int priority, const char *fmt, ...);
0014 
0015 #endif