Started using ev_types in ev_numeric, added ev_internal
Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
17
ev_internal.h
Normal file
17
ev_internal.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef EV_HEADERS_INTERNAL_H
|
||||
#define EV_HEADERS_INTERNAL_H
|
||||
|
||||
typedef signed char __ev_int8_t;
|
||||
typedef short int __ev_int16_t;
|
||||
typedef int __ev_int32_t;
|
||||
typedef long long int __ev_int64_t;
|
||||
|
||||
typedef unsigned char __ev_uint8_t;
|
||||
typedef unsigned short int __ev_uint16_t;
|
||||
typedef unsigned int __ev_uint32_t;
|
||||
typedef unsigned long long int __ev_uint64_t;
|
||||
|
||||
typedef float __ev_float32_t;
|
||||
typedef double __ev_float64_t;
|
||||
|
||||
#endif // EV_HEADERS_INTERNAL_H
|
||||
Reference in New Issue
Block a user