Sign in
akaros
/
upstream
/
0c9d4aacf7e4cd5ab983b7f0b1cc66b6d31f18c7
/
.
/
tests
/
old
/
buggyhello.c
blob: a788258fd38e4535db8ed0794cfd51fbf86ee970 [
file
] [
log
] [
blame
]
// buggy hello world -- unmapped pointer passed to kernel
// kernel should destroy user process in response
#include
<parlib.h>
int
main
(
int
argc
,
char
**
argv
)
{
sys_cputs
((
char
*)
1
,
1
);
return
0
;
}