Magisk/native/jni/core/applet_stub.cpp

11 lines
182 B
C++
Raw Normal View History

2019-05-31 06:17:58 +02:00
#include <sys/stat.h>
2020-03-09 09:50:30 +01:00
#include <magisk.hpp>
2020-06-19 11:45:57 +02:00
#include <utils.hpp>
2019-05-31 06:17:58 +02:00
int main(int argc, char *argv[]) {
umask(0);
cmdline_logging();
return APPLET_STUB_MAIN(argc, argv);
2019-05-31 06:17:58 +02:00
}