Magisk/native/jni/core/applet_stub.cpp

11 lines
181 B
C++
Raw Normal View History

2019-05-31 04:17:58 +00:00
#include <sys/stat.h>
2020-03-09 08:50:30 +00:00
#include <magisk.hpp>
2022-05-12 09:03:42 +00:00
#include <base.hpp>
2019-05-31 04:17:58 +00:00
int main(int argc, char *argv[]) {
umask(0);
cmdline_logging();
return APPLET_STUB_MAIN(argc, argv);
2019-05-31 04:17:58 +00:00
}