stdlib: abs, labs, llabs

This commit is contained in:
Imbus 2025-09-05 23:43:08 +02:00
parent 9bd5fdfa45
commit 2eba11bb3f
2 changed files with 17 additions and 0 deletions

View file

@ -4,4 +4,8 @@
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
int abs(int);
long labs(long);
long long llabs(long long);
#endif // STDLIB_H