12 lines
No EOL
174 B
C
12 lines
No EOL
174 B
C
#ifndef __CUTYPES_H
|
|
#define __CUTYPES_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef void* cu_ptr;
|
|
#define CU_PTR_SIZE sizeof(cu_ptr)
|
|
|
|
#endif |