LibC: Add some new functions

This commit is contained in:
Bananymous
2022-12-13 00:51:57 +02:00
parent 90632de834
commit f4b614aa61
3 changed files with 11 additions and 2 deletions

4
libc/include/sys/param.h Normal file
View File

@@ -0,0 +1,4 @@
#pragma once
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))