From 562cd6eeb4fac1e2167c7c4f801434e46598eb61 Mon Sep 17 00:00:00 2001 From: rlar Date: Mon, 25 Feb 2013 23:03:26 +0100 Subject: [PATCH] inpcom.c: static declaration of library related global variables --- src/frontend/inpcom.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index b9adc51ad..229122564 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -37,10 +37,10 @@ Author: 1985 Wayne A. Christopher /* globals -- wanted to avoid complicating inp_readall interface */ static char *library_file[1000]; static char *library_name[1000][1000]; -struct line *library_ll_ptr[1000][1000]; -struct line *libraries[1000]; -int num_libraries; -int num_lib_names[1000]; +static struct line *library_ll_ptr[1000][1000]; +static struct line *libraries[1000]; +static int num_libraries; +static int num_lib_names[1000]; static char *global; static char *subckt_w_params[1000]; static int num_subckt_w_params;