Skip to content
Snippets Groups Projects
Commit b03c498d authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Typedef most frequent types in opencl_stdint.h

parent abfa7d64
No related merge requests found
typedef long int int64_t;
#ifndef OPENCL_STDINT
#define OPENCL_STDINT
typedef unsigned int uint;
typedef unsigned int uint_t;
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed int int32_t;
typedef signed long int int64_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long int uint64_t;
#endif
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment