cutil/cutypes.h
2022-04-16 16:22:31 +03:00

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