shithub: riscv

ref: 797ba8e6ff1bcc5b7fc0ebeb9ce1bc3395003abb
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);
}