use correct naming convention
diff --git a/Python/ast.c b/Python/ast.c
index 6269c64..d67107c 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -645,7 +645,7 @@
 }
 
 static arg_ty
-compiler_arg(struct compiling *c, const node *n)
+ast_for_arg(struct compiling *c, const node *n)
 {
     identifier name;
     expr_ty annotation = NULL;
@@ -859,7 +859,7 @@
                              "non-default argument follows default argument");
                     return NULL;
                 }
-                arg = compiler_arg(c, ch);
+                arg = ast_for_arg(c, ch);
                 if (!arg)
                     return NULL;
                 asdl_seq_SET(posargs, k++, arg);