jos/user/buggyhello.c
Anish Athalye a9d7717cc4 Lab 3
2018-09-25 12:22:51 -04:00

12 lines
199 B
C

// buggy hello world -- unmapped pointer passed to kernel
// kernel should destroy user environment in response
#include <inc/lib.h>
void
umain(int argc, char **argv)
{
sys_cputs((char*)1, 1);
}