From: Ben Pfaff Date: Thu, 7 Jun 2007 05:47:39 +0000 (+0000) Subject: Make aux_data file scope variable static. X-Git-Tag: v0.6.0~440 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60de513311fdc78a2d9d43f7444e790aeac0f080;p=pspp-builds.git Make aux_data file scope variable static. --- diff --git a/tests/libpspp/heap-test.c b/tests/libpspp/heap-test.c index 642ce7e0..adbd61de 100644 --- a/tests/libpspp/heap-test.c +++ b/tests/libpspp/heap-test.c @@ -79,7 +79,7 @@ struct element int x; /* Primary value. */ }; -int aux_data; +static int aux_data; /* Returns the `struct element' that NODE is embedded within. */ static struct element * diff --git a/tests/libpspp/ll-test.c b/tests/libpspp/ll-test.c index 324b3d13..353787b7 100644 --- a/tests/libpspp/ll-test.c +++ b/tests/libpspp/ll-test.c @@ -118,7 +118,7 @@ struct element int y; /* Secondary value. */ }; -int aux_data; +static int aux_data; /* Returns the `struct element' that LL is embedded within. */ static struct element * diff --git a/tests/libpspp/llx-test.c b/tests/libpspp/llx-test.c index f825a3a4..be31172c 100644 --- a/tests/libpspp/llx-test.c +++ b/tests/libpspp/llx-test.c @@ -138,7 +138,7 @@ struct element int y; /* Secondary value. */ }; -int aux_data; +static int aux_data; /* Prints the elements in LIST. */ static void UNUSED