shithub: riscv

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