blob: e4608f4d4ce034ad9a7636e59f4fc4be50ea0bea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* This provides the necessary functions to do debugging in PAM.
* Cristian Gafton <gafton@redhat.com>
*/
#include "config.h"
#ifdef PAM_DEBUG
#include "security/_pam_macros.h"
#undef PAM_MACROS_H
#undef PAM_NO_HEADER_FUNCTIONS
#define PAM_DEBUG_C 1
#include "security/_pam_macros.h"
#else
extern int ISO_C_forbids_an_empty_translation_unit;
#endif /* PAM_DEBUG */
|