summaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2009-09-05 12:30:31 +0200
committerMichael Bien <[email protected]>2009-09-05 12:30:31 +0200
commitec4e5277a8d93a232c60946075aab1da2bb6b0c8 (patch)
tree155ff612de59bc1da820f9c9de0ff20fbeb14718 /resources
parent88056e6c36bf198ac9d18b03cbedea0878637bd8 (diff)
cleanup
Diffstat (limited to 'resources')
-rw-r--r--resources/CL/stdint.h6
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;