mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-16 19:47:24 +07:00
8481f8ce2b
Based on a patch from Daniel J Walsh <dwalsh@redhat.com>
11 lines
182 B
C
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
|