aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/config/feature-checks/test-libaudit.c
blob: f7e791efa6d100762d80b60241c98ab0cff0b07b (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <libaudit.h>

extern int printf(const char *format, ...);

int main(void)
{
	printf("error message: %s\n", audit_errno_to_name(0));
	return audit_open();
}