2007-03-14 20:24:57 +00:00
|
|
|
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
2007-11-24 21:28:11 +00:00
|
|
|
#ifndef _MSC_VER
|
2007-03-14 20:24:57 +00:00
|
|
|
int
|
|
|
|
abs(int j)
|
|
|
|
{
|
|
|
|
return j<0 ? -j : j;
|
|
|
|
}
|
2007-11-24 21:28:11 +00:00
|
|
|
#endif
|