source: MondoRescue/branches/2.2.9/mindi-busybox/selinux/selinuxenabled.c@ 2142

Last change on this file since 2142 was 1765, checked in by Bruno Cornec, 16 years ago

Update to busybox 1.7.2

  • Property svn:eol-style set to native
File size: 272 bytes
Line 
1/*
2 * selinuxenabled
3 *
4 * Based on libselinux 1.33.1
5 * Port to BusyBox Hiroshi Shinji <shiroshi@my.email.ne.jp>
6 *
7 */
8#include "libbb.h"
9
10int selinuxenabled_main(int argc, char **argv);
11int selinuxenabled_main(int argc, char **argv)
12{
13 return !is_selinux_enabled();
14}
Note: See TracBrowser for help on using the repository browser.