Skip to content

Instantly share code, notes, and snippets.

@mlavergn
Created February 28, 2020 18:00
Show Gist options
  • Save mlavergn/7fa08260681b24585d2a38f582963230 to your computer and use it in GitHub Desktop.
Save mlavergn/7fa08260681b24585d2a38f582963230 to your computer and use it in GitHub Desktop.
Swift C Direct Calls
// silgen allows you to call C functions without headers or bridges
// not to be used as a rulem but might have some interesting use cases
@_silgen_name("getpid") private func getpid() -> pid_t
print(getpid())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment