ish/kernel/init.h

11 lines
208 B
C

#ifndef KERNEL_INIT_H
#define KERNEL_INIT_H
#include "fs/tty.h"
int mount_root(const struct fs_ops *fs, const char *source);
void create_first_process();
int create_stdio(struct tty_driver driver);
#endif