shithub: riscv

ref: 27fb90eb6e2e277849efca83405a75bc3c724b50
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);
}