Systemd/udev_selinux.h
greg@kroah.com 8481f8ce2b [PATCH] Add initial SELinux support for udev
Based on a patch from Daniel J Walsh <dwalsh@redhat.com>
2005-04-26 21:32:31 -07:00

11 lines
182 B
C

#ifndef UDEV_SELINUX_H
#define UDEV_SELINUX_H
#ifdef USE_SELINUX
extern void selinux_add_node(char *filename);
#else
static void selinux_add_node(char *filename) { }
#endif
#endif