mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-18 00:52:33 +00:00
Resolve warning: no previous extern declaration for non-static variable by making locals static.
This commit is contained in:
parent
6603957a0b
commit
235246ded3
11
src/tty.c
11
src/tty.c
@ -25,12 +25,13 @@
|
||||
#include "tty.h"
|
||||
#include "ttydefs.h"
|
||||
|
||||
DLTTY_OUT_COMMAND *DLTTYPortCmd;
|
||||
DLTTY_IN_CSB *DLTTYIn;
|
||||
DLTTY_OUT_CSB *DLTTYOut;
|
||||
static DLTTY_OUT_COMMAND *DLTTYPortCmd;
|
||||
static DLTTY_IN_CSB *DLTTYIn;
|
||||
static DLTTY_OUT_CSB *DLTTYOut;
|
||||
|
||||
static char *TTY_Dev;
|
||||
static int TTY_Fd = -1;
|
||||
|
||||
char *TTY_Dev;
|
||||
int TTY_Fd = -1;
|
||||
extern fd_set LispReadFds;
|
||||
|
||||
void tty_init(void)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user