amiga_boottest

annotate src/inttypes.h @ 1:48093e4bd99a

stuff
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 21 Feb 2018 18:00:45 +0200
parents
children
rev   line source
nuclear@1 1 #ifndef INTTYPES_H_
nuclear@1 2 #define INTTYPES_H_
nuclear@1 3
nuclear@1 4 typedef signed char int8_t;
nuclear@1 5 typedef unsigned char uint8_t;
nuclear@1 6 typedef short int16_t;
nuclear@1 7 typedef unsigned short uint16_t;
nuclear@1 8 typedef long int32_t;
nuclear@1 9 typedef unsigned long uint32_t;
nuclear@1 10
nuclear@1 11 #endif /* INTTYPES_H_ */