11 lines
138 B
C
11 lines
138 B
C
|
// buggy program - faults with a write to location zero
|
||
|
|
||
|
#include <inc/lib.h>
|
||
|
|
||
|
void
|
||
|
umain(int argc, char **argv)
|
||
|
{
|
||
|
*(unsigned*)0 = 0;
|
||
|
}
|
||
|
|