shithub: riscv

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