blob: 871822ac6d49d87ba6f9225e7f2173eb918f48f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <mlibc/debug.hpp>
#ifdef __cplusplus
extern "C" {
#endif
int capset(void *, void *) {
mlibc::infoLogger() << "mlibc: capset is a no-op!" << frg::endlog;
return 0;
}
int capget(void *, void *) {
mlibc::infoLogger() << "mlibc: capget is a no-op!" << frg::endlog;
return 0;
}
#ifdef __cplusplus
}
#endif
|