Files
clearpilot/common/ffi_wrapper.py
Comma Device 1ff14d346f wip
2024-05-14 08:21:27 +00:00

9 lines
113 B
Python
Executable File

import platform
def suffix():
if platform.system() == "Darwin":
return ".dylib"
else:
return ".so"