iproute2/include/selinux.h
<<
>>
Prefs
   1#if HAVE_SELINUX
   2#include <selinux/selinux.h>
   3#else
   4int is_selinux_enabled(void);
   5void freecon(char *context);
   6int getpidcon(pid_t pid, char **context);
   7int getfilecon(const char *path, char **context);
   8int security_get_initial_context(const char *name,  char **context);
   9int setexecfilecon(const char *filename, const char *fallback_type);
  10#endif
  11