forked from KolibriOS/kolibrios
b5b499b8c8
Move to folder with tcc. Part 1 git-svn-id: svn://kolibrios.org@8793 a494cfbc-eb01-0410-851d-a64ba20cac60
6 lines
64 B
C
6 lines
64 B
C
#include <stdlib.h>
|
|
|
|
long labs(long a)
|
|
{
|
|
return a>0 ? a : -a;
|
|
} |