Welcome to mirror list, hosted at ThFree Co, Russian Federation.

selinuxenabled.c « selinux - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 400995af0f5ed10bf4f90bfcf2300d5ea3f8749d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * selinuxenabled
 * 
 * Based on libselinux 1.33.1
 * Port to BusyBox  Hiroshi Shinji <shiroshi@my.email.ne.jp>
 *
 */
#include "busybox.h"

int selinuxenabled_main(int argc, char **argv);
int selinuxenabled_main(int argc, char **argv)
{
	return !is_selinux_enabled();
}