Files
mango/kernel/tty.c

14 lines
228 B
C
Raw Normal View History

#include <socks/tty.h>
#include <socks/locks.h>
#include <socks/queue.h>
int tty_read(struct tty *tty, char *s, unsigned long len)
{
return 0;
}
int tty_write(struct tty *tty, const char *s, unsigned long len)
{
return 0;
}