Magisk/native/jni/core/applet_stub.cpp
topjohnwu f9bde347bc Convert indentation to spaces
The tab war is lost
2020-12-30 22:11:24 -08:00

11 lines
182 B
C++

#include <sys/stat.h>
#include <magisk.hpp>
#include <utils.hpp>
int main(int argc, char *argv[]) {
umask(0);
cmdline_logging();
return APPLET_STUB_MAIN(argc, argv);
}