#!/usr/bin/perl

while (<>) {
	if (/^#include/) {
		chomp;
		print "/* $_ */\n";
		next;
	}
	last if (/^static\s.*\w\s*=\s*{$/);
	print $_;
}
printf "\n\n/* CUT CUT CUT */\n";
