14 lines
218 B
C
14 lines
218 B
C
|
|
#include <socks/tty.h>
|
||
|
|
#include <socks/locks.h>
|
||
|
|
#include <socks/queue.h>
|
||
|
|
|
||
|
|
int tty_read(tty_t *tty, char *s, unsigned long len)
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
int tty_write(tty_t *tty, const char *s, unsigned long len)
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|