shithub: riscv

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