shithub: riscv

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