projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixed page coloring given __CONFIG_PAGE_COLOR__
[akaros.git]
/
tests
/
faultwrite.c
1
// buggy program - faults with a write to location zero
2
3
int main(int argc, char** argv)
4
{
5
*(unsigned*)0 = 0;
6
return 0;
7
}
8