Author: leo
Date: Thu Jan 12 03:31:34 2006
New Revision: 11122

Modified:
   trunk/tools/build/parrot_config_c.pl
Log:
avoid warning w missing proto of Parrot_set_config_hash

Modified: trunk/tools/build/parrot_config_c.pl
==============================================================================
--- trunk/tools/build/parrot_config_c.pl        (original)
+++ trunk/tools/build/parrot_config_c.pl        Thu Jan 12 03:31:34 2006
@@ -47,6 +47,11 @@ print << "EOF";
 
 #include "parrot/parrot.h"
 
+/* proto is in embed.h, but we don't include anything here, which
+ * could pull in some globals
+ */
+void Parrot_set_config_hash(void);  
+
 void
 Parrot_set_config_hash_internal (const unsigned char* parrot_config,
                                  unsigned int parrot_config_size);

Reply via email to