putcall an putcc removed,
curoutp, outbyte,outshort and outoff exported.
This commit is contained in:
parent
470826f0c9
commit
dd5ceb7b97
1 changed files with 9 additions and 11 deletions
|
@ -1,6 +1,15 @@
|
||||||
/* O U T P U T R O U T I N E S */
|
/* O U T P U T R O U T I N E S */
|
||||||
|
|
||||||
|
|
||||||
|
extern FILE *curoutp; /* current output file */
|
||||||
|
|
||||||
|
#define outbyte(b) putc(b,curoutp)
|
||||||
|
extern outshort(); /* (short i)
|
||||||
|
* Write a short to curoutp
|
||||||
|
*/
|
||||||
|
extern outoff(); /* (offset off)
|
||||||
|
* Write an offset to curoutp
|
||||||
|
*/
|
||||||
|
|
||||||
extern putdtable(); /* (dblock_p head, FILE *df)
|
extern putdtable(); /* (dblock_p head, FILE *df)
|
||||||
* Write the data block table to file df,
|
* Write the data block table to file df,
|
||||||
|
@ -29,14 +38,3 @@ extern short putlines(); /* (line_p l; FILE *lf)
|
||||||
* headed by l. Return the number of
|
* headed by l. Return the number of
|
||||||
* instructions written.
|
* instructions written.
|
||||||
*/
|
*/
|
||||||
extern putcall(); /* (call_p call; FILE *cfile; short level)
|
|
||||||
* Write the call
|
|
||||||
* with the given id to the given file.
|
|
||||||
* The level is the nesting level, used by
|
|
||||||
* putcall when it calls itself recurively.
|
|
||||||
* It should be 0 on outer levels.
|
|
||||||
*/
|
|
||||||
extern long putcc(); /* (calcnt_p head; FILE *ccf)
|
|
||||||
* Write call-count information to
|
|
||||||
* file ccf.
|
|
||||||
*/
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue