Subversion Repositories HelenOS-historic

Rev

Rev 1764 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1764 Rev 1779
Line 29... Line 29...
29
#ifndef TYPES_H__
29
#ifndef TYPES_H__
30
#define TYPES_H__
30
#define TYPES_H__
31
 
31
 
32
#include <gentypes.h>
32
#include <gentypes.h>
33
 
33
 
34
typedef signed char __s8;
34
typedef signed char int8_t;
35
 
35
 
36
typedef unsigned char __u8;
36
typedef unsigned char uint8_t;
37
typedef unsigned short __u16;
37
typedef unsigned short uint16_t;
38
typedef unsigned int __u32;
38
typedef unsigned int uint32_t;
39
typedef unsigned long long __u64;
39
typedef unsigned long long uint64_t;
40
 
40
 
41
typedef __u32 __address;
41
typedef uint32_t uintptr_t;
42
typedef __u32 __native;
42
typedef uint32_t unative_t;
43
 
43
 
44
#endif
44
#endif