From: Alan Cox Date: Sat, 19 Jan 2019 21:21:44 +0000 (+0000) Subject: nascom: static tty buffers X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=b9fb2305d47b2c2775698560b3e2bbdc4fd97ef2;p=FUZIX.git nascom: static tty buffers --- diff --git a/Kernel/platform-nascom/devnascom.c b/Kernel/platform-nascom/devnascom.c index 5106d02e..24d03a8e 100644 --- a/Kernel/platform-nascom/devnascom.c +++ b/Kernel/platform-nascom/devnascom.c @@ -10,8 +10,8 @@ #include #include -char tbuf1[TTYSIZ]; -char tbuf2[TTYSIZ]; +static char tbuf1[TTYSIZ]; +static char tbuf2[TTYSIZ]; struct vt_repeat keyrepeat;