mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-07 04:04:29 +00:00
16 lines
282 B
C
16 lines
282 B
C
![]() |
/* main.c - The entry point, should be mutli-call
|
||
|
*/
|
||
|
|
||
|
#include "utils.h"
|
||
|
#include "magisk.h"
|
||
|
|
||
|
// Global buffer
|
||
|
char magiskbuf[BUF_SIZE];
|
||
|
|
||
|
void stub(const char *fmt, ...) {}
|
||
|
|
||
|
int main(int argc, char const *argv[]) {
|
||
|
// Start new thread to monitor logs
|
||
|
monitor_logs();
|
||
|
return 0;
|
||
|
}
|