shithub: riscv

ref: 87fcb107ef333f5dce7618e0f4c73d69ebc75eb5
dir: /sys/src/libc/port/abs.c/

View raw version
#include <u.h>
#include <libc.h>

int
abs(int a)
{
	if(a < 0)
		return -a;
	return a;
}

long
labs(long a)
{
	if(a < 0)
		return -a;
	return a;
}