Arch-abstraction step: renamed "vg_include.h" as "core.h".


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2643 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/gen_toolint.pl b/coregrind/gen_toolint.pl
index 674d16d..bc02cbe 100644
--- a/coregrind/gen_toolint.pl
+++ b/coregrind/gen_toolint.pl
@@ -69,7 +69,7 @@
 
 # Different output modes
 if ($output eq "callwrap") {
-    $include = "vg_include.h";
+    $include = "core.h";
     $generate = sub ($$$@) {
 	my ($pfx, $ret, $func, @args) = @_;
 	my $args = join ", ", @args;
@@ -79,7 +79,7 @@
 	print "}\n";
     }
 } elsif ($output eq "proto") {
-    $include = "vg_include.h";
+    $include = "core.h";
     $generate = sub ($$$@) {
 	my ($pfx, $ret, $func, @args) = @_;
 	my $args = join ', ', @args;
@@ -95,7 +95,7 @@
 	print "$ret $pfxmap{$pfx}($func)($args);\n";
     }
 } elsif ($output eq "missingfuncs") {
-    $include = "vg_include.h";
+    $include = "core.h";
     $generate = sub ($$$@) {
 	my ($pfx, $ret, $func, @args) = @_;
 	my $args = join ", ", @args;
@@ -109,7 +109,7 @@
     };
     $indent = "   ";
 } elsif ($output eq "struct") {
-    $include = "vg_include.h";
+    $include = "core.h";
     $pre = sub () {
 	print "typedef struct {\n";
     };