Home | History | Annotate | Download | only in sys
      1 /*
      2  * sys/types.h
      3  */
      4 
      5 #ifndef _SYS_TYPES_H
      6 #define _SYS_TYPES_H
      7 
      8 #include <klibc/compiler.h>
      9 #include <stddef.h>
     10 #include <stdint.h>
     11 
     12 typedef ptrdiff_t ssize_t;
     13 typedef int mode_t;
     14 typedef size_t off_t;
     15 
     16 #endif
     17