ikarus/src/dynamic-load/library2.c

9 lines
100 B
C

#include <stdio.h>
int library_print(char* x){
fprintf(stderr, "LIB2: %s\n", x);
return 0;
}