summaryrefslogtreecommitdiff
path: root/numpy/core/src/umath/override.h
blob: 20621bb1940f937063b5a70045d2c4b80db22550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _NPY_UMATH_OVERRIDE_H
#define _NPY_UMATH_OVERRIDE_H

#include "npy_config.h"
#include "numpy/ufuncobject.h"

NPY_NO_EXPORT int
PyUFunc_CheckOverride(PyUFuncObject *ufunc, char *method,
        PyObject *in_args, PyObject *out_args, PyObject *wheremask_obj,
        PyObject *const *args, Py_ssize_t len_args, PyObject *kwnames,
        PyObject **result);


#endif