Sign in
android
/
platform
/
external
/
libcap
/
9577b17009379649c9220edca7d0077311445b95
/
.
/
pam_cap
/
test.c
blob: 5150ba536fb08f864251b53ef1b30cf621bbe5af [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdlib.h>
#include
<security/pam_modules.h>
int
main
(
int
argc
,
char
**
argv
)
{
if
(
pam_sm_authenticate
(
NULL
,
0
,
0
,
NULL
)
!=
PAM_SUCCESS
)
{
printf
(
"failed to authenticate\n"
);
exit
(
1
);
}
exit
(
0
);
}