shithub: riscv

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