shithub: riscv

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