Get rid of compiler warning
diff --git a/Parser/parsetok.c b/Parser/parsetok.c
index cb79fe4..d877fc9 100644
--- a/Parser/parsetok.c
+++ b/Parser/parsetok.c
@@ -98,7 +98,6 @@
 
 static char as_msg[] =
 "%s:%d: Warning: 'as' will become a reserved keyword in Python 2.6\n";
-#endif
 
 static void
 warn(const char *msg, const char *filename, int lineno)
@@ -107,6 +106,7 @@
 		filename = "<string>";
 	PySys_WriteStderr(msg, filename, lineno);
 }
+#endif
 
 static node *
 parsetok(struct tok_state *tok, grammar *g, int start, perrdetail *err_ret,