17 lines
240 B
C
17 lines
240 B
C
|
/* $Source$
|
||
|
* $State$
|
||
|
* $Revision$
|
||
|
*/
|
||
|
|
||
|
#ifndef LIBSYS_H
|
||
|
#define LIBSYS_H
|
||
|
|
||
|
extern void _sys_rawwrite(unsigned char b);
|
||
|
extern unsigned char _sys_rawread(void);
|
||
|
|
||
|
extern void _sys_write_tty(char c);
|
||
|
|
||
|
/* extern int _sys_ttyflags; */
|
||
|
|
||
|
#endif
|