shithub: riscv

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