Rename printk() to printf().
[pintos-anon] / src / userprog / syscall.c
index e6dfe94fb354b6162e92eb4c3b79719103426d43..7f758c617d8089fd664cafba0d7973ae9ccc5e57 100644 (file)
@@ -1,5 +1,6 @@
-#include "syscall.h"
-#include "lib/lib.h"
+#include "userprog/syscall.h"
+#include <stdio.h>
+#include <syscall-nr.h>
 #include "threads/interrupt.h"
 #include "threads/thread.h"
 
@@ -14,6 +15,6 @@ syscall_init (void)
 static void
 syscall_handler (struct intr_frame *f) 
 {
-  printk ("system call!\n");
+  printf ("system call!\n");
   thread_exit ();
 }