Changeset 68e548 in git
- Timestamp:
- Mar 30, 2011, 3:18:13 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- cce694ced07925c1c2ad8a166177a070e40d29b5
- Parents:
- cf3743ac8056f3ef32435fb19bfb2336330b8591
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-03-30 15:18:13+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:15+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/auxiliary.h
rcf3743 r68e548 44 44 */ 45 45 46 46 // TODO: the following should go to some config.h... no? 47 47 48 48 /* Define version as a string */ … … 56 56 // ---------------- Singular standard types etc. 57 57 // BOOLEAN 58 59 #include <omalloc/omalloc.h> 60 61 #ifndef SIZEOF_LONG 62 63 #include <climits> 64 65 #ifndef LONG_BIT 66 #if ULONG_MAX == 0xffffffffUL 67 #define LONG_BIT 32 68 #elif ULONG_MAX == 0xffffffffffffffffULL 69 #define LONG_BIT 64 70 #else 71 #error "Unexpected max for unsigned long" 72 #endif 73 #endif 74 75 #define SIZEOF_LONG (LONG_BIT/CHAR_BIT) 76 77 #endif 78 58 79 59 80 #if (SIZEOF_LONG == 8)
Note: See TracChangeset
for help on using the changeset viewer.