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