repo.or.cz
/
mascara-docs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* more re-work
[mascara-docs.git]
/
i386
/
junos
/
ucla
/
src
/
lab5
/
user
/
faultwrite.c
blob
0ad365f6c62230c8cfff3665968422caa5a2ecc9
1
// buggy program - faults with a write to location zero
2
3
#include <inc/lib.h>
4
5
asmlinkage
void
6
umain
(
int
argc
,
char
**
argv
)
7
{
8
*(
unsigned
*)
0
=
0
;
9
}