shithub: riscv

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