mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 06:40:37 +01:00
5 lines
64 B
C
5 lines
64 B
C
#include <stdlib.h>
|
|
|
|
int abs(int n) {
|
|
return n < 0 ? -n : n;
|
|
} |