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);
|
|
|
|
}
|