kern

diff src/klibc/inttypes.h @ 0:662ff2170531

starting the kernel
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 01 Dec 2010 22:02:42 +0200
parents
children a6513dc35f04
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/klibc/inttypes.h	Wed Dec 01 22:02:42 2010 +0200
     1.3 @@ -0,0 +1,12 @@
     1.4 +#ifndef INTTYPES_H_
     1.5 +#define INTTYPES_H_
     1.6 +
     1.7 +typedef char int8_t;
     1.8 +typedef short int16_t;
     1.9 +typedef int int32_t;
    1.10 +
    1.11 +typedef unsigned char uint8_t;
    1.12 +typedef unsigned short uint16_t;
    1.13 +typedef unsigned int uint32_t;
    1.14 +
    1.15 +#endif	/* INTTYPES_H_ */