Ubuntu – call external C library from COBOL
I'm extperimenting COBOL last times and I having trouble with link and external call with COBOL First, i have a simple test lib source code: // testlib.c #include <stdio.h> void CFUNC() { printf("This is a C function.n"); } I compile…