plan9fox/sys/src/ape/lib/v/max.c
2011-03-30 19:35:09 +03:00

8 lines
87 B
C

#define _RESEARCH_SOURCE
#include <libv.h>
max(int a, int b)
{
return (a>b? a: b);
}