shithub: riscv

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