Changeset 5835ba4 in git
- Timestamp:
- Aug 1, 2011, 6:33:58 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- b5ebe54cea878c7c82ebc41aac7fa1cc99af1bbf
- Parents:
- 0fb34bac98f307ec4d8f9571d2ee684b08f93f2c
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-08-01 18:33:58+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:01:19+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/auxiliary.h.in
r0fb34ba r5835ba4 76 76 #endif 77 77 78 79 78 80 #define SIZEOF_LONG (LONG_BIT/CHAR_BIT) 79 81 // another option for SIZEOF_LONG: use omConfig included in <omalloc/omalloc.h>... … … 81 83 #endif 82 84 85 #include <sys/types.h> 86 #if SIZEOF_LONG == 4 87 typedef long long int64; 88 #elif SIZEOF_LONG == 8 89 typedef long int64; 90 #else 91 #error "Unexpected SIZEOF_LONG" 92 #endif 83 93 84 94
Note: See TracChangeset
for help on using the changeset viewer.