/* * sys/types.h — primitive system types for nulsl-libc. */ #ifndef _NULSL_SYS_TYPES_H #define _NULSL_SYS_TYPES_H #include #ifdef __cplusplus extern "C" { #endif typedef long ssize_t; typedef long off_t; typedef long pid_t; typedef unsigned int uid_t; typedef unsigned int gid_t; typedef unsigned long mode_t; #ifdef __cplusplus } #endif #endif /* _NULSL_SYS_TYPES_H */