Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
Signed-off-by: martinvuyk <[email protected]>
  • Loading branch information
martinvuyk committed Nov 11, 2024
1 parent 3e83143 commit 41b4989
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion stdlib/src/builtin/_startup.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from memory import UnsafePointer
from sys import external_call
from sys.ffi import _get_global, OpaquePointer
from sys.ffi.utils import _get_global, OpaquePointer


fn _init_global_runtime(ignored: OpaquePointer) -> OpaquePointer:
Expand Down
2 changes: 1 addition & 1 deletion stdlib/src/hashlib/hash.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ There are a few main tools in this module:
"""

import random
from sys.ffi import _get_global, OpaquePointer
from sys.ffi.utils import _get_global, OpaquePointer
from sys import simdwidthof, bitwidthof
from collections import InlineArray

Expand Down
2 changes: 1 addition & 1 deletion stdlib/src/python/python.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ from python import Python
from collections import Dict
from os import abort, getenv
from sys import external_call, sizeof
from sys.ffi import _get_global, OpaquePointer
from sys.ffi.utils import _get_global, OpaquePointer

from memory import UnsafePointer

Expand Down
2 changes: 1 addition & 1 deletion stdlib/src/sys/info.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ from sys import is_x86
```
"""

from .ffi import _external_call_const, external_call, OpaquePointer
from sys.ffi.utils import _external_call_const, external_call, OpaquePointer
from memory import UnsafePointer


Expand Down
2 changes: 1 addition & 1 deletion stdlib/src/utils/numerics.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from utils.numerics import FPUtils

from sys import bitwidthof, has_neon, has_sse4, llvm_intrinsic
from sys._assembly import inlined_assembly
from sys.ffi import _external_call_const
from sys.ffi.utils import _external_call_const

from builtin.dtype import _integral_type_of, _uint_type_of
from builtin.simd import _simd_apply
Expand Down

0 comments on commit 41b4989

Please sign in to comment.