shithub: riscv

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