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