shithub: riscv

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