diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-07-08 00:24:12 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-07-08 00:24:12 +0000 |
commit | 1acf453e6bdbac5e176806b0ad07ad33e32a5f40 (patch) | |
tree | 87a5ee0373b5ac70c33df30ba84ee9dff5035667 /numpy/core/src/scalarmathmodule.c.src | |
parent | 8904c7ab8d3e5fb1233e80586c5a4c6b7df4a14b (diff) | |
download | numpy-1acf453e6bdbac5e176806b0ad07ad33e32a5f40.tar.gz |
Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArray_ prefixes.
Diffstat (limited to 'numpy/core/src/scalarmathmodule.c.src')
-rw-r--r-- | numpy/core/src/scalarmathmodule.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/scalarmathmodule.c.src b/numpy/core/src/scalarmathmodule.c.src index 4abb3c29a..e514b083f 100644 --- a/numpy/core/src/scalarmathmodule.c.src +++ b/numpy/core/src/scalarmathmodule.c.src @@ -7,7 +7,7 @@ */ #include "Python.h" -#include "numpy/arrayobject.h" +#include "numpy/noprefix.h" #include "numpy/ufuncobject.h" #include "numpy/arrayscalars.h" |