ref: fd731d3c833d9241fdff618b6c949453fb5c0f31
dir: /stdint.h/
#ifndef _stdint_h_ #define _stdint_h_ #include "plan9.h" #include <limits.h> typedef s8int int8_t; typedef u8int uint8_t; typedef s16int int16_t; typedef u16int uint16_t; typedef s32int int32_t; typedef u32int uint32_t; typedef s64int int64_t; typedef u64int uint64_t; typedef long ssize_t; typedef ulong size_t; typedef intptr ptrdiff_t; typedef intptr intptr_t; typedef uintptr uintptr_t; #endif