Skip to content

Instantly share code, notes, and snippets.

@chadbrewbaker
Created March 4, 2017 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chadbrewbaker/68ba30c6ae2384641e27efd3a556cbd3 to your computer and use it in GitHub Desktop.
Save chadbrewbaker/68ba30c6ae2384641e27efd3a556cbd3 to your computer and use it in GitHub Desktop.
Example of how to called a shared object file on OSX
import ctypes
libc = ctypes.cdll.LoadLibrary("/usr/lib/libc.dylib")
print libc.div(9,3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment