summaryrefslogtreecommitdiff
path: root/numpy/core/blasdot
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-07-08 00:24:12 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-07-08 00:24:12 +0000
commit1acf453e6bdbac5e176806b0ad07ad33e32a5f40 (patch)
tree87a5ee0373b5ac70c33df30ba84ee9dff5035667 /numpy/core/blasdot
parent8904c7ab8d3e5fb1233e80586c5a4c6b7df4a14b (diff)
downloadnumpy-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/blasdot')
-rw-r--r--numpy/core/blasdot/_dotblas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/blasdot/_dotblas.c b/numpy/core/blasdot/_dotblas.c
index 220dc6ab9..89ff6a353 100644
--- a/numpy/core/blasdot/_dotblas.c
+++ b/numpy/core/blasdot/_dotblas.c
@@ -2,7 +2,7 @@ static char module_doc[] =
"This module provides a BLAS optimized\nmatrix multiply, inner product and dot for numpy arrays";
#include "Python.h"
-#include "numpy/arrayobject.h"
+#include "numpy/noprefix.h"
#ifndef CBLAS_HEADER
#define CBLAS_HEADER "cblas.h"
#endif