cbindgen.toml 329 B

1234567891011121314
  1. sys_includes = ["stddef.h", "stdint.h", "sys/types.h"]
  2. include_guard = "_RELIBC_UNISTD_H"
  3. trailer = "#include <bits/fcntl.h>\n#include <bits/unistd.h>"
  4. language = "C"
  5. style = "Tag"
  6. no_includes = true
  7. cpp_compat = true
  8. [enum]
  9. prefix_with_name = true
  10. [defines]
  11. "target_os = linux" = "__linux__"
  12. "target_os = redox" = "__redox__"