shithub: riscv

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