dxx-rebirth/arch/dos/serial.c
Bradley Bell 9bd1ba7c47 This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
2001-01-19 03:30:16 +00:00

22 lines
293 B
C

// dummy serial code because of linux serial stuff
#include "serial.h"
void com_write(char *buffer, int len)
{
}
int com_read(char *buffer, int len, int timeout_value)
{
return 0;
}
int com_getdcd()
{
return 0;
}
int com_readline(int timeout, char *input_buffer, int len)
{
return 0;
}