diff options
Diffstat (limited to 'doc/source/reference/c-api.maskna.rst')
-rw-r--r-- | doc/source/reference/c-api.maskna.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api.maskna.rst b/doc/source/reference/c-api.maskna.rst index 7253ea2ac..374998141 100644 --- a/doc/source/reference/c-api.maskna.rst +++ b/doc/source/reference/c-api.maskna.rst @@ -154,7 +154,7 @@ To start, we define the function prototype and some basic :ctype:`NpyIter` boilerplate setup. We'll make a function which supports an optional *out* parameter, which may be NULL.:: - PyArrayObject* + static PyArrayObject* SpecialDivide(PyArrayObject* a, PyArrayObject* b, PyArrayObject *out) { NpyIter *iter = NULL; |