amiga_imgv

diff src/amiga/inttypes.h @ 0:a4788c959918

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 25 Oct 2017 19:34:53 +0300
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/amiga/inttypes.h	Wed Oct 25 19:34:53 2017 +0300
     1.3 @@ -0,0 +1,11 @@
     1.4 +#ifndef INTTYPES_H_
     1.5 +#define INTTYPES_H_
     1.6 +
     1.7 +typedef signed char int8_t;
     1.8 +typedef unsigned char uint8_t;
     1.9 +typedef short int16_t;
    1.10 +typedef unsigned short uint16_t;
    1.11 +typedef long int32_t;
    1.12 +typedef unsigned long uint32_t;
    1.13 +
    1.14 +#endif	/* INTTYPES_H_ */