Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 712846
Collapse All | Expand All

(-)a/includes.h (-3 lines)
Lines 91-99 Link Here
91
#ifdef HAVE_SYS_BITYPES_H
91
#ifdef HAVE_SYS_BITYPES_H
92
# include <sys/bitypes.h> /* For u_intXX_t */
92
# include <sys/bitypes.h> /* For u_intXX_t */
93
#endif
93
#endif
94
#ifdef HAVE_SYS_CDEFS_H
95
# include <sys/cdefs.h> /* For __P() */
96
#endif
97
#ifdef HAVE_SYS_STAT_H
94
#ifdef HAVE_SYS_STAT_H
98
# include <sys/stat.h> /* For S_* constants and macros */
95
# include <sys/stat.h> /* For S_* constants and macros */
99
#endif
96
#endif
(-)a/pam_get_pass.c (-3 lines)
Lines 23-31 Link Here
23
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24
 * SUCH DAMAGE.
24
 * SUCH DAMAGE.
25
 */
25
 */
26
27
#include <sys/cdefs.h>
28
29
#include <stdlib.h>
26
#include <stdlib.h>
30
#include <stdio.h>
27
#include <stdio.h>
31
#include <string.h>
28
#include <string.h>
(-)a/pam_get_pass.h (-2 / +6 lines)
Lines 26-32 Link Here
26
 *	$FreeBSD: src/lib/libpam/libpam/security/pam_mod_misc.h,v 1.10.4.1 2002/07/16 12:33:23 des Exp $
26
 *	$FreeBSD: src/lib/libpam/libpam/security/pam_mod_misc.h,v 1.10.4.1 2002/07/16 12:33:23 des Exp $
27
 */
27
 */
28
28
29
__BEGIN_DECLS
29
#ifdef __cplusplus
30
extern "C" {
31
#endif
30
int	pam_get_pass(pam_handle_t *, const char **, const char *, struct options *);
32
int	pam_get_pass(pam_handle_t *, const char **, const char *, struct options *);
31
int pam_conv_pass(pam_handle_t *, const char *, struct options *);
33
int pam_conv_pass(pam_handle_t *, const char *, struct options *);
32
__END_DECLS
34
#ifdef __cplusplus
35
}
36
#endif
(-)a/pam_option.h (-4 / +6 lines)
Lines 26-33 Link Here
26
 * $Id: pam_option.h,v 1.1 2002/09/20 00:00:55 akorty Exp $
26
 * $Id: pam_option.h,v 1.1 2002/09/20 00:00:55 akorty Exp $
27
 */
27
 */
28
28
29
#include <sys/cdefs.h>
30
31
/* Standard options */
29
/* Standard options */
32
30
33
enum opt {
31
enum opt {
Lines 52-58 struct options { Link Here
52
	} opt[PAM_MAX_OPTIONS];
50
	} opt[PAM_MAX_OPTIONS];
53
};
51
};
54
52
55
__BEGIN_DECLS
53
#ifdef __cplusplus
54
extern "C" {
55
#endif
56
void	pam_std_option(struct options *, struct opttab *, int, const char **);
56
void	pam_std_option(struct options *, struct opttab *, int, const char **);
57
int	pam_test_option(struct options *, enum opt, char **);
57
int	pam_test_option(struct options *, enum opt, char **);
58
__END_DECLS
58
#ifdef __cplusplus
59
}
60
#endif
(-)a/pam_ssh.c (-1 lines)
Lines 41-47 Link Here
41
/* to get the asprintf() prototype from the glibc headers */
41
/* to get the asprintf() prototype from the glibc headers */
42
#define _GNU_SOURCE
42
#define _GNU_SOURCE
43
43
44
#include <sys/cdefs.h>
45
#include <sys/param.h>
44
#include <sys/param.h>
46
#include <sys/stat.h>
45
#include <sys/stat.h>
47
#include <sys/types.h>
46
#include <sys/types.h>
(-)a/pam_std_option.c (-3 lines)
Lines 23-31 Link Here
23
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24
 * SUCH DAMAGE.
24
 * SUCH DAMAGE.
25
 */
25
 */
26
27
#include <sys/cdefs.h>
28
29
#include <stdio.h>
26
#include <stdio.h>
30
#include <string.h>
27
#include <string.h>
31
#include <pam_appl.h>
28
#include <pam_appl.h>

Return to bug 712846