1 2 3 4 5 6 7 8 9 10 11
#ifndef __SAFEC_TYPES_H #define __SAFEC_TYPES_H #include <stddef.h> #include <stdint.h> #include <stdbool.h> typedef uintptr_t size_t; typedef intptr_t ssize_t; #endif