i finally got C types working, thanks for the info Rob. Plus dynamic inclusion is working great, thanks Bryant
heres an example
%include "stdio.inc"
%include "stdlib.inc"
%include "time.inc"
SECTION .bss
var1 reserve(time_t) 1
SECTION .text
cproc main
ccall time, var1
ccall printf, `Number of seconds since the epoch: %d\n`, time_t[var1]
mov eax, EXIT_SUCCESS
cendproc