user: implement mlibc as the libc, finally.
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
This commit is contained in:
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user