shithub: riscv

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