shithub: riscv

ref: 0c7da78f4519f1352668b4b024f29fb1e887b3d2
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);
}