shithub: riscv

ref: 08ea6d85c432f1ea27a96bb4e68b9d79f64674b6
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);
}