1
2#pragma once
3
4#include_next <unistd.h>
5
6__inline __uid_t getuid(void){return 0;}
7__inline int geteuid(void){return 1;}
8
9__inline __gid_t getgid(void){return 0;}
10__inline __gid_t getegid(void){return 0;}
11
12// no-oped sync
13__inline void sync(void){};
14