shithub: riscv

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