X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=listing.c;h=f930b79d84100d26b903ada41e80306feec92406;hp=82d2520ba56b3a036cf38f68d4760ce37136222b;hb=2e6629b63805b6d205021bf9d822ca78bd9e6548;hpb=d16b8ea0ee65b2ad901ca6b0624c07e6e4930cc4 diff --git a/listing.c b/listing.c index 82d2520..f930b79 100644 --- a/listing.c +++ b/listing.c @@ -20,24 +20,25 @@ #include "sect.h" #include "error.h" -char * list_fname; // Listing filename -char subttl[TITLESIZ]; // Current subtitle -int listing; // Listing level -int pagelen = 61; // Lines on a page -int nlines; // #lines on page so far -LONG lsloc; // `sloc' at start of line +char * list_fname; // Listing filename +char subttl[TITLESIZ]; // Current subtitle +int listing; // Listing level +int pagelen = 61; // Lines on a page +int nlines; // #lines on page so far +LONG lsloc; // `sloc' at start of line // Private -static int lcursect; // `cursect' at start of line -static int llineno; // `curlineno' at start of line -static int pageno; // Current page number -static int pagewidth; // #columns on a page -static int subflag; // 0, don't do .eject on subttl (set 1) -static char lnimage[IMAGESIZ]; // Image of output line -static char title[TITLESIZ]; // Current title -static char datestr[20]; // Current date dd-mon-yyyy -static char timestr[20]; // Current time hh:mm:ss [am|pm] -static char buf[IMAGESIZ]; // Buffer for numbers +static int lcursect; // `cursect' at start of line +static int llineno; // `curlineno' at start of line +static int pageno; // Current page number +static int pagewidth; // #columns on a page +static int subflag; // 0, don't do .eject on subttl (set 1) +static char lnimage[IMAGESIZ]; // Image of output line +static char title[TITLESIZ]; // Current title +static char datestr[20]; // Current date dd-mon-yyyy +static char timestr[20]; // Current time hh:mm:ss [am|pm] +static char buf[IMAGESIZ]; // Buffer for numbers +static long unused; // For supressing 'write' warnings static char * month[16] = { "", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", @@ -212,8 +213,8 @@ void println(const char * ln) list_setup(); length = strlen(ln); - write(list_fd, ln, length); - write(list_fd, "\n", 1L); + unused = write(list_fd, ln, length); + unused = write(list_fd, "\n", 1L); } @@ -255,7 +256,7 @@ void ship_ln(const char * ln) // // Initialize Listing Generator // -void init_list(void) +void InitListing(void) { extern VALUE dos_date(), dos_time();