mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-06-13 05:37:47 +02:00
12 lines
155 B
C
12 lines
155 B
C
#include "nolibc/crt.h"
|
|
#include "nolibc/arch.h"
|
|
#include "nolibc/stdio.h"
|
|
|
|
// errno
|
|
|
|
static int g_errno = 0;
|
|
|
|
int *__errno(void) {
|
|
return &g_errno;
|
|
}
|