]> icculus.org git repositories - btb/d2x.git/blob - arch/dos/serial.c
comments/formatting
[btb/d2x.git] / arch / dos / serial.c
1 // dummy serial code because of linux serial stuff
2 #include "serial.h"
3
4 void com_write(char *buffer, int len)
5 {
6 }
7
8 int com_read(char *buffer, int len, int timeout_value)
9 {
10  return 0;
11 }
12
13 int com_getdcd()
14 {
15  return 0;
16 }
17
18 int com_readline(int timeout, char *input_buffer, int len)
19 {
20  return 0;
21 }