panthema / 2006 / SDIOS06 / sdios06 / include / libc / stdint.h (Download File)
#ifndef STDINT_H_
#define STDINT_H_

#include <l4/types.h>

typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long int uint64_t;

typedef signed char int8_t;
typedef short int int16_t;
typedef int int32_t;
typedef long long int int64_t;

typedef unsigned long int uintptr_t;

#endif