diff options
Diffstat (limited to 'resources/CL/stdint.h')
-rw-r--r-- | resources/CL/stdint.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/CL/stdint.h b/resources/CL/stdint.h index d3de5327..f8bee857 100644 --- a/resources/CL/stdint.h +++ b/resources/CL/stdint.h @@ -6,14 +6,14 @@ // typedef unsigned __int64 uint64_t; #else - typedef signed char int8_t; + typedef signed char int8_t; typedef unsigned short int16_t; - typedef int int32_t; + typedef int int32_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; - typedef int intptr_t; + typedef int intptr_t; typedef unsigned int uintptr_t; typedef unsigned int size_t; |