mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 08:53:02 +00:00
9 lines
88 B
C
9 lines
88 B
C
#include <string.h>
|
|
/*
|
|
* @implemented
|
|
*/
|
|
long
|
|
labs(long j)
|
|
{
|
|
return j<0 ? -j : j;
|
|
}
|