repo.or.cz
/
splint-patched.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Some consistency changes to library & headers flags.
[splint-patched.git]
/
test
/
unaryop.c
blob
e885f15bb10f0fcba94277a3741f94186a85b58d
1
int
minus
(
void
)
2
{
3
return
-
1
;
4
}
5
6
int
plus
(
void
)
7
{
8
return
+
1
;
9
}
10
11
int
tilde
(
void
)
12
{
13
return
~
7
;
14
}
15