mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2024-11-28 16:29:17 +08:00
10 lines
171 B
Plaintext
10 lines
171 B
Plaintext
|
#ifndef _COMMON_CUH_
|
||
|
#define _COMMON_CUH_
|
||
|
|
||
|
typedef unsigned char uchar;
|
||
|
typedef unsigned int uint;
|
||
|
typedef unsigned long long int ullint;
|
||
|
|
||
|
#endif // #ifndef _COMMON_CUH_
|
||
|
|