kern

annotate src/klibc/inttypes.h @ 77:a6513dc35f04

- started writing disk/ata code - made the debug script rip the commandline arguments out of the run script so I won't have to keep them in sync - added 64bit sized types in klibc/intypes.h - temporarily commented out the processes init from main
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 06 Dec 2011 11:56:08 +0200
parents 662ff2170531
children
rev   line source
nuclear@0 1 #ifndef INTTYPES_H_
nuclear@0 2 #define INTTYPES_H_
nuclear@0 3
nuclear@0 4 typedef char int8_t;
nuclear@0 5 typedef short int16_t;
nuclear@0 6 typedef int int32_t;
nuclear@77 7 typedef long long int64_t;
nuclear@0 8
nuclear@0 9 typedef unsigned char uint8_t;
nuclear@0 10 typedef unsigned short uint16_t;
nuclear@0 11 typedef unsigned int uint32_t;
nuclear@77 12 typedef unsigned long long uint64_t;
nuclear@0 13
nuclear@0 14 #endif /* INTTYPES_H_ */