index
:
plan9front.git
cosa
front
gicv2
gicvn
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
src
/
ape
/
lib
/
v
/
min.c
blob: f0502af0c628aa0fd190506897b4c96d91ef38c9 (
plain
)
1
2
3
4
5
6
7
#define _RESEARCH_SOURCE
#include
<libv.h>
min
(
int
a
,
int
b
)
{
return
(
a
<
b
?
a
:
b
);
}