shithub: riscv

ref: 65b058830b619bf682c8900a207d2c6b87d2c37e
dir: /sys/src/ape/lib/v/max.c/

View raw version
#define _RESEARCH_SOURCE
#include <libv.h>

max(int a, int b)
{
	return (a>b? a: b);
}