Changeset e17f69 in git for libpolys/misc/mylimits.h
- Timestamp:
- Nov 29, 2012, 8:43:25 PM (11 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- bc2606c794d00713ff51852ec7e067799ad62326
- Parents:
- 2e984a6cbf8ed1e42ed3c9d1ef5cee27a2a33027
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-11-29 20:43:25+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-11-29 23:08:27+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/mylimits.h
r2e984a re17f69 22 22 // #define ULONG_MAX (~0UL) // ?? 23 23 #ifndef ULONG_MAX 24 #define ULONG_MAX (~0 L)24 #define ULONG_MAX (~0UL) 25 25 #endif 26 26 … … 28 28 // #if ~0UL != 4294967295UL 29 29 #ifndef LONG_MAX 30 #if ~0UL == 4294967295UL30 #if ULONG_MAX != 4294967295UL 31 31 #define LONG_MAX 9223372036854775807L 32 32 #else
Note: See TracChangeset
for help on using the changeset viewer.