shithub: riscv

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