Started using ev_types in ev_numeric, added ev_internal

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2022-01-02 15:13:17 +02:00
parent 2ce705baee
commit 4080e7299b
3 changed files with 34 additions and 14 deletions

17
ev_internal.h Normal file
View 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