shithub: riscv

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