shithub: riscv

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