Added floating-point types and limits

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2021-12-28 15:08:43 +02:00
parent 1af5237371
commit 7168de8524
2 changed files with 23 additions and 0 deletions

View File

@@ -13,4 +13,8 @@ typedef unsigned short int u16;
typedef unsigned int u32;
typedef unsigned long long int u64;
// Floating-Point Numbers
typedef float f32;
typedef double f64;
#endif // EV_HEADERS_TYPES_H