Some small changes
This commit is contained in:
parent
4deafdc9de
commit
2662c3984d
|
@ -6,6 +6,7 @@
|
|||
#include <ctype.h>
|
||||
#include <signal.h>
|
||||
#include <system.h>
|
||||
#include <print.h>
|
||||
#include <em.h>
|
||||
#include <em_mes.h>
|
||||
|
||||
|
|
|
@ -26,5 +26,5 @@ compileprogram()
|
|||
while( basicline = 0, getline())
|
||||
(void) LLparse();
|
||||
epilogcode();
|
||||
(void) sys_close(yyin);
|
||||
sys_close(yyin);
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@ char **argv;
|
|||
case 't': traceflag++;
|
||||
break; /* line tracing */
|
||||
case 'h': /* split EM file */
|
||||
(void) fprint(STDERR,
|
||||
fprint(STDERR,
|
||||
"h option not implemented\n");
|
||||
break;
|
||||
case 'd': debug++;
|
||||
|
|
|
@ -256,7 +256,7 @@ heading( )
|
|||
{
|
||||
char procname[50];
|
||||
|
||||
sprint(procname,"_%s",fcn->symname);
|
||||
(void) sprint(procname,"_%s",fcn->symname);
|
||||
C_pro_narg(procname);
|
||||
if ( fcn->symtype== DEFAULTTYPE)
|
||||
fcn->symtype= DOUBLETYPE;
|
||||
|
|
|
@ -73,7 +73,7 @@ int i;
|
|||
{
|
||||
static char buf[30];
|
||||
|
||||
(void) sprint(buf,"%d",i);
|
||||
sprint(buf,"%d",i);
|
||||
return(buf);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue