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
/
max.c
blob: c8a1055672fc2ac44deb9dcf1df49fb3195b6db3 (
plain
)
1
2
3
4
5
6
7
#define _RESEARCH_SOURCE
#include
<libv.h>
max
(
int
a
,
int
b
)
{
return
(
a
>
b
?
a
:
b
);
}