Home | History | Annotate | Download | only in mingw
      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