From: Alan Cox Date: Sat, 19 Jan 2019 20:55:18 +0000 (+0000) Subject: cromemco: make the tty buffers static X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=bba4f0cea739d414cf93f6e611b7c42badb811c8;p=FUZIX.git cromemco: make the tty buffers static --- diff --git a/Kernel/platform-cromemco/devtty.c b/Kernel/platform-cromemco/devtty.c index f803ee83..5ee1567b 100644 --- a/Kernel/platform-cromemco/devtty.c +++ b/Kernel/platform-cromemco/devtty.c @@ -6,9 +6,9 @@ #include #include -char tbuf1[TTYSIZ]; -char tbuf2[TTYSIZ]; -char tbuf3[TTYSIZ]; +static char tbuf1[TTYSIZ]; +static char tbuf2[TTYSIZ]; +static char tbuf3[TTYSIZ]; struct s_queue ttyinq[NUM_DEV_TTY+1] = { /* ttyinq[0] is never used */ { NULL, NULL, NULL, 0, 0, 0 },