mirror of
https://github.com/systemd/systemd.git
synced 2024-10-29 04:55:36 +03: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
|