29 lines
537 B
C
Raw Permalink Normal View History

2020-04-06 18:30:47 +02:00
#include <types.h>
#include <kern/errno.h>
#include <kern/reboot.h>
#include <kern/unistd.h>
#include <lib.h>
#include <spl.h>
#include <clock.h>
#include <thread.h>
#include <proc.h>
#include <current.h>
#include <synch.h>
#include <vm.h>
#include <mainbus.h>
#include <vfs.h>
#include <device.h>
#include <syscall.h>
#include <test.h>
#include <version.h>
#include "autoconf.h" // for pseudoconfig
#include "hello.h"
void hello(void) {
kprintf("---------------\n");
kprintf("Hello fplifps!!\n");
kprintf("---------------\n");
}