1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-09 06:18:03 +00:00
reactos/lib/sdk/crt/math/abs.c

13 lines
154 B
C
Raw Normal View History

/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#ifndef _MSC_VER
/*
* @implemented
*/
int
abs(int j)
{
return j<0 ? -j : j;
}
#endif