blob: 133eb62ed6698c6520c36f6863c9cf7fa6918a4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef CAPABILITIES_H
#define CAPABILITIES_H
#if defined(HAVE_LIBCAP)
void drop_capabilities(void);
#else
static inline void drop_capabilities(void) {}
#endif
#endif
|