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