Subversion Repositories Kolibri OS

Rev

Rev 948 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 948 Rev 951
Line 16... Line 16...
16
 
16
 
Line 17... Line 17...
17
#define  TRUE  (Bool)1
17
#define  TRUE  (Bool)1
18
#define  FALSE (Bool)0
18
#define  FALSE (Bool)0
Line -... Line 19...
-
 
19
 
-
 
20
#define min_t(type,x,y) \
-
 
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; })