9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
20 lines
318 B
C++
20 lines
318 B
C++
#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
|