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