I realize that for blackhole, c-define-type's are not exported across modules. How do I pull them in? The following code does not compile under bsc (but does under gsc)<br><br>~/magic$ cat test3.scm<br>(c-define-type yay int)<br>
~/magic$ bsc test3.scm<br>*** ERROR IN "/home/x/magic/test3.scm"@1.20 -- Undefined C type identifier<br>~/magic$ gsc test3.scm<br>test3.c:35: warning: deprecated conversion from string constant to ‘char*’<br>test3.c:89: warning: deprecated conversion from string constant to ‘char*’<br>
<br><br>I grepped bh/modules for examples of how to use c-define-type, but the only one there used (void).<br><br>Thanks!<br>