shithub: riscv

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