xref
: /
plan9-contrib
/
sys
/
src
/
ape
/
lib
/
v
/
max.c
(revision ec59a3ddbfceee0efe34584c2c9981a5e5ff1ec4)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
define
_RESEARCH_SOURCE
2
#
include
<
libv.h
>
3
4
max
(
int
a
,
int
b
)
5
{
6
return
(
a
>
b
?
a
:
b
);
7
}
8