Subversion Repositories freemyipod

Rev

Rev 881 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
881 theseven 1
#ifndef __GLOBAL_H__
2
#define __GLOBAL_H__
3
 
4
#ifndef ASM_FILE
940 theseven 5
typedef unsigned char uint8_t;
6
typedef signed char int8_t;
7
typedef unsigned short uint16_t;
8
typedef signed short int16_t;
9
typedef unsigned long uint32_t;
10
typedef signed long int32_t;
11
typedef unsigned long long uint64_t;
12
typedef signed long long int64_t;
13
typedef __SIZE_TYPE__ size_t;
14
typedef uint32_t uintptr_t;
15
typedef int32_t intptr_t;
16
typedef uint8_t bool;
881 theseven 17
#define NULL ((void*)0)
18
#define true 1
19
#define false 0
20
#endif
21
 
22
#include "config.h"
23
 
24
#endif