shithub: riscv

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