diff options
author | orivej <orivej@yandex-team.ru> | 2022-02-10 16:44:49 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:44:49 +0300 |
commit | 718c552901d703c502ccbefdfc3c9028d608b947 (patch) | |
tree | 46534a98bbefcd7b1f3faa5b52c138ab27db75b7 /contrib/tools/cython/Cython/Includes/libc/stdint.pxd | |
parent | e9656aae26e0358d5378e5b63dcac5c8dbe0e4d0 (diff) | |
download | ydb-718c552901d703c502ccbefdfc3c9028d608b947.tar.gz |
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/tools/cython/Cython/Includes/libc/stdint.pxd')
-rw-r--r-- | contrib/tools/cython/Cython/Includes/libc/stdint.pxd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/tools/cython/Cython/Includes/libc/stdint.pxd b/contrib/tools/cython/Cython/Includes/libc/stdint.pxd index ced3d46add..6140d6e712 100644 --- a/contrib/tools/cython/Cython/Includes/libc/stdint.pxd +++ b/contrib/tools/cython/Cython/Includes/libc/stdint.pxd @@ -2,7 +2,7 @@ # Actual compile time size used for conversions. # 7.18 Integer types <stdint.h> -cdef extern from "<stdint.h>" nogil: +cdef extern from "<stdint.h>" nogil: # 7.18.1 Integer types # 7.18.1.1 Exact-width integer types @@ -13,7 +13,7 @@ cdef extern from "<stdint.h>" nogil: ctypedef unsigned char uint8_t ctypedef unsigned short uint16_t ctypedef unsigned int uint32_t - ctypedef unsigned long long uint64_t + ctypedef unsigned long long uint64_t # 7.18.1.2 Minimum-width integer types ctypedef signed char int_least8_t ctypedef signed short int_least16_t @@ -22,7 +22,7 @@ cdef extern from "<stdint.h>" nogil: ctypedef unsigned char uint_least8_t ctypedef unsigned short uint_least16_t ctypedef unsigned int uint_least32_t - ctypedef unsigned long long uint_least64_t + ctypedef unsigned long long uint_least64_t # 7.18.1.3 Fastest minimum-width integer types ctypedef signed char int_fast8_t ctypedef signed short int_fast16_t @@ -31,7 +31,7 @@ cdef extern from "<stdint.h>" nogil: ctypedef unsigned char uint_fast8_t ctypedef unsigned short uint_fast16_t ctypedef unsigned int uint_fast32_t - ctypedef unsigned long long uint_fast64_t + ctypedef unsigned long long uint_fast64_t # 7.18.1.4 Integer types capable of holding object pointers ctypedef ssize_t intptr_t ctypedef size_t uintptr_t |