blob: beb08913e2ab76bfdc38a87cc3db2ffe0a725f12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _SERIAL_H
#define _SERIAL_H
#include <kernel/tty.h>
#include <sys/types.h>
extern struct tty_struct tty_rs;
ssize_t rsread(void*, size_t);
void serial_init(void);
#endif
|