1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-24 19:50:25 +00:00

Fix missing prototype adding ttydefs.h, declare tty_baudtosymbol() as static.

This commit is contained in:
Nick Briggs
2022-12-22 16:25:27 -08:00
parent a1e5e6eecc
commit 4853f0e3f5
3 changed files with 18 additions and 3 deletions

14
inc/ttydefs.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef TTYDEFS_H
#define TTYDEFS_H 1
void tty_init(void);
void tty_open(void);
void tty_close(void);
void tty_get(void);
void tty_put(void);
void tty_setbaudrate(void);
void tty_setparam(void);
void tty_breakon(void);
void tty_breakoff(void);
void tty_cmd(void);
void tty_debug(const char *name);
#endif