shithub: riscv

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