Avoid "warning: no newline at end of file" in importlib.h.
diff --git a/Python/freeze_importlib.py b/Python/freeze_importlib.py
index c012722..b96e7f2 100644
--- a/Python/freeze_importlib.py
+++ b/Python/freeze_importlib.py
@@ -25,6 +25,8 @@
     with open(output_path, 'w', encoding='utf-8') as output_file:
         output_file.write('\n'.join(lines))
         output_file.write('/* Mercurial binary marker: \x00 */')
+        # Avoid a compiler warning for lack of EOL
+        output_file.write('\n')
 
 
 if __name__ == '__main__':
diff --git a/Python/importlib.h b/Python/importlib.h
index 0beeb59..cf5619a 100644
--- a/Python/importlib.h
+++ b/Python/importlib.h
Binary files differ