diff options
Diffstat (limited to 'src/kernel/lib/stdlib.h')
-rw-r--r-- | src/kernel/lib/stdlib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/kernel/lib/stdlib.h b/src/kernel/lib/stdlib.h index 704c410..319cf26 100644 --- a/src/kernel/lib/stdlib.h +++ b/src/kernel/lib/stdlib.h @@ -8,5 +8,8 @@ uint8_t *memset(uint8_t *dest, uint8_t val, int count); uint16_t *memsetw(uint16_t *dest, uint16_t val, int count); int strlen(const char *str); +#define MIN(a, b) ((a) < (b) ? (a) : (b)) +#define MAX(a, b) ((a) > (b) ? (a) : (b)) + #endif |