From 97f57cf4da45d268bbea863ae7bf40bb8c749aad Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 6 Sep 2020 23:27:29 +0200 Subject: Some timer thingies --- libc/inc/def.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'libc') diff --git a/libc/inc/def.h b/libc/inc/def.h index 42939a0..2c77203 100644 --- a/libc/inc/def.h +++ b/libc/inc/def.h @@ -25,4 +25,19 @@ typedef unsigned long long u64; #define NULL ((void *)0) +#define U8_MAX 255 +#define S8_MAX 127 +#define S8_MIN -128 +#define U16_MAX 65535 +#define S16_MAX 32767 +#define S16_MIN -32768 +#define U32_MAX 4294967295 +#define S32_MAX 2147483647 +#define S32_MIN -2147483648 + +#define MILLION 1000000 +#define BILLION 1000000000 +#define TRILLION 1000000000000 +#define QUADRILLION 1000000000000000 + #endif -- cgit v1.2.3