mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-15 20:26:33 +00:00
Resolve warning: no previous extern declaration for non-static variable by making locals static.
This commit is contained in:
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)
|
||||
|
||||
Reference in New Issue
Block a user