File: pam_test.c

package info (click to toggle)
libpam-ssh 2.3%2Bds-8
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,420 kB
  • sloc: ansic: 19,090; makefile: 95; sh: 44
file content (12 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
#include <dlfcn.h>
#include <stdio.h>

int
main(int argc, char *argv[])
{
	if (!(dlopen(".libs/pam_ssh.so", RTLD_NOW))) {
		fprintf(stderr, "%s\n", dlerror());
		return 1;
	}
	return 0;
}