shithub: riscv

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