shithub: riscv

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