tool_main.c: fix VMS global variable storage-class specifier
authorTom Grace <Thomas.Grace@amdocs.com>
Wed, 13 Mar 2013 02:13:52 +0000 (03:13 +0100)
committerYang Tse <yangsita@gmail.com>
Wed, 13 Mar 2013 02:13:52 +0000 (03:13 +0100)
An extern submits a psect and a global reference to the linker to point
to it. Using "extern int vms_show = 0" also creates a globaldef.

The use of the extern by itself does declare a psect but does not declare
a globalsymbol. It does declare a globalref. But the linker needs one and
only one globaldef or there is an error.

src/tool_main.c

index 95e9cc7794dfdc7078b6535a4e8ca111b10d523d..4b8817a2e02f9d3e71a62be7c7e5bbc5ffd01c34 100644 (file)
@@ -52,7 +52,7 @@
  * Its value may be set in other tool_*.c source files thanks to
  * forward declaration present in tool_vms.h
  */
-static int vms_show = 0;
+extern int vms_show = 0;
 #endif
 
 /*