Files
CervusOS/usr/lib/libcervus/math/abs.c
T
alexvoste 1a9fd27a31 push
2026-05-07 02:22:25 +03:00

6 lines
66 B
C

#include <math.h>
int abs(int n) {
return n >= 0 ? n : -n;
}