shithub: riscv

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