summaryrefslogtreecommitdiffstats
path: root/Include/asdl.h
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-12 20:52:43 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-12 20:52:43 (GMT)
commitd01d396e7f9db2b3c362fe48a07cd55420dce030 (patch)
tree648b09bf3ac3c2588e661a11d3e396d83fb83030 /Include/asdl.h
parent409b53840b83bc275db3ac234c547ff4dd67af58 (diff)
downloadcpython-d01d396e7f9db2b3c362fe48a07cd55420dce030.zip
cpython-d01d396e7f9db2b3c362fe48a07cd55420dce030.tar.gz
cpython-d01d396e7f9db2b3c362fe48a07cd55420dce030.tar.bz2
Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py".
("make smelly" now clean)
Diffstat (limited to 'Include/asdl.h')
-rw-r--r--Include/asdl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/asdl.h b/Include/asdl.h
index 0789ad8..7c3b6d1 100644
--- a/Include/asdl.h
+++ b/Include/asdl.h
@@ -25,8 +25,8 @@ typedef struct {
int elements[1];
} asdl_int_seq;
-asdl_seq *asdl_seq_new(Py_ssize_t size, PyArena *arena);
-asdl_int_seq *asdl_int_seq_new(Py_ssize_t size, PyArena *arena);
+asdl_seq *_Py_asdl_seq_new(Py_ssize_t size, PyArena *arena);
+asdl_int_seq *_Py_asdl_int_seq_new(Py_ssize_t size, PyArena *arena);
#define asdl_seq_GET(S, I) (S)->elements[(I)]
#define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size)