summaryrefslogtreecommitdiff
path: root/numpy/random/common.pxd
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-06-27 16:17:09 -0700
committermattip <matti.picus@gmail.com>2019-06-27 16:27:47 -0700
commit14c333972d64fce85d06d74bc673045f32da7b5f (patch)
treec2580325e9f3474edfb4a6196d37b98f7af9e7e9 /numpy/random/common.pxd
parent4178b5a731cd183563d53ed145e7dce278aa39f6 (diff)
downloadnumpy-14c333972d64fce85d06d74bc673045f32da7b5f.tar.gz
MAINT: move location of bitgen.h
Diffstat (limited to 'numpy/random/common.pxd')
-rw-r--r--numpy/random/common.pxd2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/common.pxd b/numpy/random/common.pxd
index ac0a94bb0..2f7baa06e 100644
--- a/numpy/random/common.pxd
+++ b/numpy/random/common.pxd
@@ -5,7 +5,7 @@ from libc.stdint cimport (uint8_t, uint16_t, uint32_t, uint64_t,
uintptr_t)
from libc.math cimport sqrt
-cdef extern from "src/bitgen.h":
+cdef extern from "numpy/random/bitgen.h":
struct bitgen:
void *state
uint64_t (*next_uint64)(void *st) nogil