From a1d73c84d0d8d637aa4024564d2e1416d90106d4 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 19 Jan 2019 21:17:51 +0000 Subject: [PATCH] atarist: keep dead prototype code in sync --- Kernel/platform-atarist/devtty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/platform-atarist/devtty.c b/Kernel/platform-atarist/devtty.c index 91222944..799544f9 100644 --- a/Kernel/platform-atarist/devtty.c +++ b/Kernel/platform-atarist/devtty.c @@ -14,8 +14,8 @@ uint8_t *uart_status = (uint8_t *)0xFF05; /* ACIA status */ uint8_t *uart_command = (uint8_t *)0xFF06; /* ACIA command */ uint8_t *uart_control = (uint8_t *)0xFF07; /* ACIA control */ -unsigned char tbuf1[TTYSIZ]; -unsigned char tbuf2[TTYSIZ]; +static unsigned char tbuf1[TTYSIZ]; +static unsigned char tbuf2[TTYSIZ]; struct s_queue ttyinq[NUM_DEV_TTY + 1] = { /* ttyinq[0] is never used */ {NULL, NULL, NULL, 0, 0, 0}, -- 2.34.1