header pragma allows multiple headers in the following way: 
    
    
    proc myProc() {.importc, header: """#include <abc.h>
                                      #include <stdio.h>""".}
    

It is worth noting that header pragma better be avoided as it makes your file 
dependent on the header. When function or struct ABI is well defined, you can 
easily get away with just importc pragma.

Reply via email to