shithub: riscv

ref: 7828ffb8a486e188b61394436a434e8cae4fd487
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);
}