X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=inline;f=src%2Fcc65%2Ftextseg.h;h=568903e1239a7b2bdabfa0c8d62d3867ed354027;hb=9fc71c5e93f7e8270dd6f8fc3810b7b731bf1259;hp=eeeb4d3fd654c1dc4d981c087c5487b203dc1118;hpb=d27bfe8a7b00dddef501ae9ce73e398c068be7c4;p=cc65 diff --git a/src/cc65/textseg.h b/src/cc65/textseg.h index eeeb4d3fd..568903e12 100644 --- a/src/cc65/textseg.h +++ b/src/cc65/textseg.h @@ -79,7 +79,10 @@ struct TextSeg { TextSeg* NewTextSeg (SymEntry* Func); /* Create a new text segment, initialize and return it */ -void TS_AddLine (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 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);