V7M/src/libc/gen/abs.c

Compare this file to the similar file:
Show the results in this format:

abs(arg)
{

	if(arg < 0)
		arg = -arg;
	return(arg);
}