Commit 82698cde by Ben Elliston Committed by Ben Elliston

gjavah.c (output_directory): Make static.

	* gjavah.c (output_directory): Make static.
	(temp_directory): Likewise.

From-SVN: r91074
parent b85e31b9
2004-11-23 Ben Elliston <bje@au.ibm.com>
* gjavah.c (output_directory): Make static.
(temp_directory): Likewise.
2004-11-15 Tom Tromey <tromey@redhat.com>
* decl.c (instn_ptr_type_node): Removed.
......
......@@ -61,10 +61,10 @@ int flag_jni = 0;
int flag_newer = 1;
/* Directory to place resulting files in. Set by -d option. */
const char *output_directory = "";
static const char *output_directory = "";
/* Directory to place temporary file. Set by -td option. Currently unused. */
const char *temp_directory = "/tmp";
static const char *temp_directory = "/tmp";
/* Number of friend functions we have to declare. */
static int friend_count;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment