shithub: riscv

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