shithub: riscv

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