Hi,
if I want to use the importc pragma, but the header containing the function I want only works properly, if prefixed by one or more other headers, how do I do this?
This is the example in the doc:
proc printf(formatstr: cstring) {.header: "<stdio.h>", importc: "printf", varargs.}
So, what if "<abc.h>" needed to be imported before "<stdio.h>"?