Fix include lines in rename.pl
diff --git a/tmp/rename.pl b/tmp/rename.pl
index 4d1854c..f06647c 100755
--- a/tmp/rename.pl
+++ b/tmp/rename.pl
@@ -50,6 +50,13 @@
 
     my @out;
     for my $line (@lines) {
+        if( $line =~ /#include/ ) {
+            $line =~ s/polarssl/mbedtls/;
+            $line =~ s/POLARSSL/MBEDTLS/;
+            push( @out, $line );
+            next;
+        }
+
         my @words = ($line =~ /$token/g);
         my $checkline = join '', @words;
         if( $checkline eq $line ) {