mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-05 13:14:24 +03:00
6 lines
61 B
C
6 lines
61 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
int abs(int a)
|
||
|
{
|
||
|
return a>0 ? a : -a;
|
||
|
}
|