- Timestamp:
- Jun 9, 2010, 12:28:01 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- c08834bf50b47d2b3cb0fead54ea4d7bdd59b433
- Parents:
- 56abc3642a555178d4967c093c099b3244d33e84
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2010-06-09 12:28:01+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:05+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/aux.h
r56abc3 r72f476b 2 2 3 3 /******************************************************************* 4 * File: aux .h4 * File: auxiliary.h 5 5 * Purpose: 6 6 * Author: … … 10 10 11 11 // BOOLEAN 12 // max, min?13 14 12 15 13 #ifndef _MISC_AUX_H 16 14 #define _MISC_AUX_H 17 15 18 #define TRUE 1 19 #define FALSE 0 16 #if (SIZEOF_LONG == 8) 17 typedef int BOOLEAN; 18 /* testet on x86_64, gcc 3.4.6: 2 % */ 19 /* testet on IA64, gcc 3.4.6: 1 % */ 20 #else 21 /* testet on athlon, gcc 2.95.4: 1 % */ 22 typedef short BOOLEAN; 23 #endif 24 25 #ifndef FALSE 26 #define FALSE 0 27 #endif 28 29 #ifndef TRUE 30 #define TRUE 1 31 #endif 20 32 21 33 #ifndef NULL 22 #define NULL ( 0)34 #define NULL ((void *)(0)) 23 35 #endif 24 36 … … 32 44 typedef void* ADDRESS; 33 45 34 #if (SIZEOF_LONG == 8)35 typedef int BOOLEAN;36 /* testet on x86_64, gcc 3.4.6: 2 % */37 /* testet on IA64, gcc 3.4.6: 1 % */38 #else39 /* testet on athlon, gcc 2.95.4: 1 % */40 typedef short BOOLEAN;41 #endif42 46 #define loop for(;;) 43 47
Note: See TracChangeset
for help on using the changeset viewer.