shithub: riscv

ref: 187806ad2021994c4e841d4dbddc569d51023bb0
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);
}