|
14 | 14 | from ._cstd import c_malloc as _malloc |
15 | 15 | from ._cstd import c_raise as ct_raise |
16 | 16 | from ._cstd import c_realloc as _realloc |
17 | | -from ._cstd import dll |
| 17 | +from ._cstd import dll, mdll |
18 | 18 | from ._utils import get_mapped, get_py |
19 | 19 | from .base_pointers import BaseCPointer, BasePointer |
20 | 20 | from .c_pointer import TypedCPointer, VoidPointer |
@@ -505,15 +505,15 @@ def setlocale(category: int, locale: StringLike) -> str: |
505 | 505 |
|
506 | 506 |
|
507 | 507 | def frexp(x: float, exponent: TypedPtr[int]) -> int: |
508 | | - return binding_base(dll.frexp, x, exponent) |
| 508 | + return binding_base(mdll.frexp, x, exponent) |
509 | 509 |
|
510 | 510 |
|
511 | 511 | def ldexp(x: float, exponent: int) -> int: |
512 | | - return binding_base(dll.ldexp, x, exponent) |
| 512 | + return binding_base(mdll.ldexp, x, exponent) |
513 | 513 |
|
514 | 514 |
|
515 | 515 | def modf(x: float, integer: TypedPtr[float]) -> int: |
516 | | - return binding_base(dll.modf, x, integer) |
| 516 | + return binding_base(mdll.modf, x, integer) |
517 | 517 |
|
518 | 518 |
|
519 | 519 | def fclose(stream: PointerLike) -> int: |
|
0 commit comments