shithub: riscv

ref: 68b8351f8c176057e4e07ddbce94235f2ae23159
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);
}