Can't use dynamic-link with any shared object file

2016-12-26 Thread saffronsnail
hy this error would occur? Any help you can give me would be appreciated. Thanks,saffronsnail

Re: Can't use dynamic-link with any shared object file

2016-12-26 Thread saffronsnail
On 12/26/2016 at 2:24 PM, "Jan Wedekind" wrote:I think "libc" is normally loaded already. E.g. the C function "abs" can be accessed as follows: (define main (dynamic-link)) (define cabs (pointer->procedure long (dynamic-func "abs" main) (list long))) (cabs -42) ; 42 Regards