shithub: riscv

ref: 190c40c9fff3eafd23ab89cb445d4f85d29963b0
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);
}