Magisk/native/jni/systemproperties/include/hacks.h

15 lines
310 B
C
Raw Normal View History

#pragma once
#include <stdio.h>
2019-02-25 05:09:34 +01:00
#include <syscall.h>
#ifndef PR_SET_VMA
#define PR_SET_VMA 0x53564d41
#endif
#ifndef PR_SET_VMA_ANON_NAME
#define PR_SET_VMA_ANON_NAME 0
#endif
#define getline __getline
2019-02-25 05:09:34 +01:00
#define fsetxattr(...) syscall(__NR_fsetxattr, __VA_ARGS__)
2019-11-19 08:04:47 +01:00
ssize_t __getline(char **, size_t *, FILE *);