shithub: riscv

ref: 511cee2f223812000c19acb4dd80f161c6b48f63
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);
}