boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

types.h (411B)


      1 #ifndef _SYS_TYPES_H
      2 #define _SYS_TYPES_H
      3 #include <stddef.h>
      4 typedef long           ssize_t;
      5 typedef long           off_t;
      6 typedef int            pid_t;
      7 typedef unsigned int   uid_t;
      8 typedef unsigned int   gid_t;
      9 typedef unsigned int   mode_t;
     10 typedef unsigned long  ino_t;
     11 typedef unsigned long  dev_t;
     12 typedef unsigned long  nlink_t;
     13 typedef long           blksize_t;
     14 typedef long           blkcnt_t;
     15 #endif