shithub: riscv

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