ish/kernel/init.h
Theodore Dubois 088e7b727d Implement ptys
Also a bunch of somewhat related changes, I was too lazy to break this into more than one commit
2019-01-21 12:20:43 -08:00

11 lines
213 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(void);
int create_stdio(struct tty_driver *driver);
#endif