* Added EmptyStatement node to represent an empty statement (sole ';'), with tests and c-to-c support
* Added sys.path update in _build_tables.py to enable it to run correctly from the pycparser folder
diff --git a/examples/tests/test_c-to-c.py b/examples/tests/test_c-to-c.py
index cba62f5..8015891 100644
--- a/examples/tests/test_c-to-c.py
+++ b/examples/tests/test_c-to-c.py
@@ -81,6 +81,7 @@
             int main() {

                 int a;

                 a = 5;

+                ;

                 return a;

             }''')