diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-07-08 01:50:46 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-07-08 01:50:46 +0000 |
commit | 21e52f005c9ee4a44a23cdec87d9eaa357bd31e5 (patch) | |
tree | 29c9c2491114a0a2789af4a36f1e8ca96b7a3b2f /numpy/core | |
parent | b6f0858d8b714f83e4c8a390fad310648cf0f823 (diff) | |
download | numpy-21e52f005c9ee4a44a23cdec87d9eaa357bd31e5.tar.gz |
Fix f2py and doc
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/include/numpy/ufuncobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/include/numpy/ufuncobject.h b/numpy/core/include/numpy/ufuncobject.h index 416c183a1..0df3997e3 100644 --- a/numpy/core/include/numpy/ufuncobject.h +++ b/numpy/core/include/numpy/ufuncobject.h @@ -6,7 +6,7 @@ extern "C" { #define NPY_MAXARGS 40 -typedef void (*PyUFuncGenericFunction) (char **, intp *, intp *, void *); +typedef void (*PyUFuncGenericFunction) (char **, npy_intp *, npy_intp *, void *); typedef struct { PyObject_HEAD |