shithub: riscv

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