1 /*
2     SPDX-FileCopyrightText: 2015 Samuel Gaist <samuel.gaist@edeltech.ch
3 
4     SPDX-License-Identifier: LGPL-2.1-or-later
5 */
6 
7 #ifndef PAM_DARWIN_H
8 #define PAM_DARWIN_H
9 
10 #include <security/pam_modules.h>
11 
12 void pam_vsyslog(const pam_handle_t *ph, int priority, const char *fmt, va_list args);
13 void pam_syslog(const pam_handle_t *ph, int priority, const char *fmt, ...);
14 
15 #endif
16