diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-13 18:09:43 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-13 18:09:43 +0200 |
| commit | e1e75aa387b1bc2b80df1895131fa9d446bba9ac (patch) | |
| tree | 12b5a3b412ab4d4c6a24ea894025d6dbf65b8ac1 /src/libc/math.h | |
| parent | 5a9a57177f730d1c00ab2b47f91e5ea2660a4f77 (diff) | |
Cleaning code
Diffstat (limited to 'src/libc/math.h')
| -rw-r--r-- | src/libc/math.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libc/math.h b/src/libc/math.h index 56f1788..9f9bd58 100644 --- a/src/libc/math.h +++ b/src/libc/math.h @@ -2,5 +2,7 @@ #define MATH_H int pow(int x,int n); - +int max(int x,int y); +int min(int x,int y); +int abs(int x); #endif
\ No newline at end of file |
