mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-02-19 16:17:50 +07:00
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
|