Files
sunnypilot/common/ffi_wrapper.py
Adeeb Shihadeh feb03f3625 more common/ pruning (#30778)
old-commit-hash: 8c1176ca83
2023-12-17 11:40:46 -08:00

9 lines
113 B
Python

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