diff --git a/nanos-lite/src/syscall.c b/nanos-lite/src/syscall.c index 1ba7b41..3e1da74 100644 --- a/nanos-lite/src/syscall.c +++ b/nanos-lite/src/syscall.c @@ -18,7 +18,6 @@ int _gettimeofday(struct timeval *tv, struct timezone *tz) { int _execve(const char *fname, char *const argv[], char *const envp[]); void _exit(int status) { - // printf("!!!!!!!!!!!!!!!!!!!!Exit with status %d\n", status); // halt(status); _execve("/bin/menu", NULL, NULL); }