mirror of
https://github.com/reactos/reactos.git
synced 2025-06-15 14:18:58 +00:00
13 lines
174 B
C
13 lines
174 B
C
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
#include <stdlib.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
#ifndef _MSC_VER
|
|
int
|
|
abs(int j)
|
|
{
|
|
return j<0 ? -j : j;
|
|
}
|
|
#endif
|