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