summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/stdint.h
Commit message (Collapse)AuthorAgeFilesLines
* * Merge in cygwin-64bit-branch.Corinna Vinschen2013-04-231-19/+21
|
* Throughout, update copyrights to reflect dates which correspond to main-branchChristopher Faylor2013-01-211-1/+1
| | | | checkins. Regularize copyright format.
* * include/inttypes.h: Add x86_64 target considerations throughout.Corinna Vinschen2012-07-281-13/+119
| | | | | Define macros in C++ according to C99 requirements. * include/stdint.h: Ditto.
* * include/stdint.h (intptr_t): Remove long from type.Dave Korn2009-04-131-5/+5
| | | | | | (uintptr_t): Likewise. (INTPTR_MIN): Remove 'L' suffix. (INTPTR_MAX, UINTPTR_MAX): Likewise.
* * include/stdint.h (INTPTR_MIN, INTPTR_MAX): Add 'L' suffix.Corinna Vinschen2009-04-111-4/+4
| | | | (WINT_MAX): Add 'U' suffix.
* * include/stdint.h (int_least32_t): Define as int.Corinna Vinschen2009-04-071-12/+12
| | | | | | | | | | | | | | (uint_least32_t): Ditto, unsigned. (int_fast16_t): Define as int. (int_fast32_t): Ditto. (uint_fast16_t): Ditto, unsigned. (uint_fast32_t): Ditto. (UINT32_MAX): Remove `L' long marker. (UINT_LEAST32_MAX): Ditto. (UINT_FAST16_MAX): Ditto. (UINT_FAST32_MAX): Ditto. (INT32_C): Ditto. (UINT32_C): Ditto.
* * include/stdint.h: Use int rather than long for {u,}int32_t.Christopher Faylor2008-05-171-2/+2
|
* * include/stdint.h (WINT_MIN): Fix sign.Corinna Vinschen2007-04-061-1/+1
|
* * include/stdint.h (WINT_MIN, WINT_MAX): Fix definition.Corinna Vinschen2007-04-041-3/+3
|
* * include/stdint.h (UINT8_C, UINT16_C): Unsigned types smallerCorinna Vinschen2006-07-031-3/+3
| | | | than int promote to signed int.
* * include/stdint.h (INTMAX_C, UINTMAX_C): Fix definition.Corinna Vinschen2005-05-231-2/+2
|
* * include/stdint.h: Prevent signed->unsigned conversion for 32 andCorinna Vinschen2003-10-291-13/+13
| | | | 64 bit min value constants.
* * include/stdint.h: Duplicate below effort for rest of *64_*.Christopher Faylor2003-10-281-5/+5
|
* * include/stdint.h: Correctly define INT64_MAX.Christopher Faylor2003-10-281-1/+1
|
* * include/stdint.h: Correctly define INT32_MIN.Christopher Faylor2003-08-081-1/+1
|
* * include/inttypes.h: New file.Corinna Vinschen2003-04-221-0/+182
* include/stdint.h: New file. * include/cygwin/in.h: Include stdint.h instead of sys/types.h. * include/cygwin/types.h: Include stdint.h. Remove typedefs for intN_t and uintN_t since these are defined in stdint.h now.