Subversion Repositories Kolibri OS

Rev

Rev 948 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
948 serge 1
 
2
3
 
4
 
5
typedef  unsigned short int   u16_t;
6
typedef  unsigned int         u32_t;
7
typedef  unsigned long long   u64_t;
8
9
 
10
11
 
12
typedef  unsigned int         count_t;
13
typedef  unsigned int         eflags_t;
14
15
 
16
17
 
18
#define  FALSE (Bool)0
19
20
 
951 serge 21
	({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
22
#define max_t(type,x,y) \
23
	({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
24