shithub: riscv

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