diff options
author | mattip <matti.picus@gmail.com> | 2018-07-02 16:28:33 -0700 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-08-21 20:04:32 +0300 |
commit | f88d5768545df2d04179243ceed916af9ac8b47f (patch) | |
tree | 3432a5825f038530e9d0dc026074e54bae2508f8 /numpy/core/src/common | |
parent | c49f779b73ef714b0065bf9904b1d7e9224cd1d7 (diff) | |
download | numpy-f88d5768545df2d04179243ceed916af9ac8b47f.tar.gz |
MAINT: move declararions into umathmodule.h
Diffstat (limited to 'numpy/core/src/common')
-rw-r--r-- | numpy/core/src/common/umathmodule.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/numpy/core/src/common/umathmodule.h b/numpy/core/src/common/umathmodule.h new file mode 100644 index 000000000..6998596ee --- /dev/null +++ b/numpy/core/src/common/umathmodule.h @@ -0,0 +1,8 @@ +#include "__umath_generated.c" +#include "__ufunc_api.c" + +PyObject * add_newdoc_ufunc(PyObject *NPY_UNUSED(dummy), PyObject *args); +PyObject * ufunc_frompyfunc(PyObject *NPY_UNUSED(dummy), PyObject *args, PyObject *NPY_UNUSED(kwds)); +int initumath(PyObject *m); + + |