diff options
Diffstat (limited to 'numpy/random/sfc64.pyx')
-rw-r--r-- | numpy/random/sfc64.pyx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/random/sfc64.pyx b/numpy/random/sfc64.pyx index a881096e9..d1b0a0a52 100644 --- a/numpy/random/sfc64.pyx +++ b/numpy/random/sfc64.pyx @@ -1,7 +1,8 @@ import numpy as np cimport numpy as np -from .common cimport * +from libc.stdint cimport uint32_t, uint64_t +from ._common cimport uint64_to_double from .bit_generator cimport BitGenerator __all__ = ['SFC64'] |