]> git.sur5r.net Git - cc65/blobdiff - src/cc65/textseg.h
The check for illegal storage classes on globals was wrong
[cc65] / src / cc65 / textseg.h
index c96a522f7aaa9870ed1942658efef9a3aabc80a8..568903e1239a7b2bdabfa0c8d62d3867ed354027 100644 (file)
@@ -79,10 +79,13 @@ struct TextSeg {
 TextSeg* NewTextSeg (SymEntry* Func);
 /* Create a new text segment, initialize and return it */
 
-void AddTextEntry (TextSeg* S, const char* Format, va_list ap) attribute ((format(printf,2,0)));
+void TS_AddVLine (TextSeg* S, const char* Format, va_list ap) attribute ((format(printf,2,0)));
 /* Add a line to the given text segment */
 
-void OutputTextSeg (const TextSeg* S, FILE* F);
+void TS_AddLine (TextSeg* S, const char* Format, ...) attribute ((format(printf,2,3)));
+/* Add a line to the given text segment */
+
+void TS_Output (const TextSeg* S, FILE* F);
 /* Output the text segment data to a file */