aboutsummaryrefslogtreecommitdiff
path: root/selinux/selinuxenabled.c
blob: b342280982bb50673d6cca0e071a41dde2f3c43f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * 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)
{
	return !is_selinux_enabled();
}