X-Git-Url: https://git.dlugolecki.net.pl/?p=vlp.git;a=blobdiff_plain;f=src%2Fint%2Fcint.c;h=300c83ee3827d31aed4aaf29dc59304f7fb8eda8;hp=03bc54642800052ba2b18b3730f21149699756a3;hb=2319171bbf99580c7f8ba064f0830eecfb231fda;hpb=62d979015dc3c645a1b52a41a24adbc2dd471cb9 diff --git a/src/int/cint.c b/src/int/cint.c index 03bc546..300c83e 100644 --- a/src/int/cint.c +++ b/src/int/cint.c @@ -94,6 +94,7 @@ static void load(char *_filename) abend("Memory size too large (use /m option)\n"); addext(filename, ".ccd"); + fprintf(stderr, "logint: Reading static data from %s file\n", filename); if ((fp = fopen(filename, BINARYREAD)) == NULL) { fprintf(stderr, "Cannot open .ccd file\n"); endrun(10); @@ -110,6 +111,7 @@ static void load(char *_filename) ic += n; left -= n; } while (n != 0); + fprintf(stderr, "logint: Static data from %s file has been read\n", filename); /* now ic = number of words read */ fclose(fp); @@ -129,6 +131,7 @@ static void load(char *_filename) /* Read prototypes from .pcd file */ addext(filename, ".pcd"); + fprintf(stderr, "logint: Reading prototypes from %s file\n", filename); if ((fp = fopen(filename, BINARYREAD)) == NULL) { fprintf(stderr,"Cannot open .pcd file\n"); endrun(10); @@ -143,6 +146,7 @@ static void load(char *_filename) abend("Cannot read .pcd file\n"); } fclose(fp); + fprintf(stderr, "logint: Prototypes from: %s file has been read\n", filename); /* Open trace file */ if (debug) {