/*1* SELinux services exported to the rest of the kernel.2*3* Author: James Morris <[email protected]>4*5* Copyright (C) 2005 Red Hat, Inc., James Morris <[email protected]>6* Copyright (C) 2006 Trusted Computer Solutions, Inc. <[email protected]>7* Copyright (C) 2006 IBM Corporation, Timothy R. Chavez <[email protected]>8*9* This program is free software; you can redistribute it and/or modify10* it under the terms of the GNU General Public License version 2,11* as published by the Free Software Foundation.12*/13#include <linux/module.h>1415#include "security.h"1617bool selinux_is_enabled(void)18{19return selinux_enabled;20}21EXPORT_SYMBOL_GPL(selinux_is_enabled);222324