shithub: riscv

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