1 /*
2  *	z88dk RS232 Function
3  *
4  *	ZX Spectrum plus version
5  *
6  *	unsigned char rs232_close()
7  *
8  *	Specify the serial interface parameters
9  *
10  *      $Id: rs232_close.c,v 1.2 2008-06-10 07:59:10 stefano Exp $
11  */
12 
13 
14 #include <rs232.h>
15 
16 
rs232_close()17 u8_t rs232_close()
18 {
19 	return RS_ERR_OK;
20 }
21