mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
10 lines
97 B
C
10 lines
97 B
C
#include <string.h>
|
|
/*
|
|
* @implemented
|
|
*/
|
|
long
|
|
labs(long j)
|
|
{
|
|
return j<0 ? -j : j;
|
|
}
|