mirror of
https://github.com/reactos/reactos.git
synced 2025-08-10 23:05:50 +00:00
13 lines
178 B
C
13 lines
178 B
C
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
#ifndef _MSC_VER
|
|
long
|
|
labs(long j)
|
|
{
|
|
return j<0 ? -j : j;
|
|
}
|
|
#endif
|