blob: 86d05370d40df59de9166b7ecd432256e0d22b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _IPXE_SERIAL_H
#define _IPXE_SERIAL_H
/** @file
*
* Serial driver functions
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
extern void serial_putc ( int ch );
extern int serial_getc ( void );
extern int serial_ischar ( void );
extern int serial_initialized;
#endif /* _IPXE_SERIAL_H */
|