]> git.sur5r.net Git - cc65/blobdiff - src/cc65/dataseg.h
New function ReplaceType
[cc65] / src / cc65 / dataseg.h
index ac1cb4fcc31048dae65010c036f0112ef47a9eb8..af1b024487a04d0de30085f58d38eacc5cf90e4f 100644 (file)
@@ -77,7 +77,10 @@ DataSeg* NewDataSeg (const char* SegName, SymEntry* Func);
 void DS_Append (DataSeg* Target, const DataSeg* Source);
 /* Append the data from Source to Target. */
 
-void DS_AddLine (DataSeg* S, const char* Format, va_list ap) attribute ((format(printf,2,0)));
+void DS_AddVLine (DataSeg* S, const char* Format, va_list ap) attribute ((format(printf,2,0)));
+/* Add a line to the given data segment */
+
+void DS_AddLine (DataSeg* S, const char* Format, ...) attribute ((format(printf,2,3)));
 /* Add a line to the given data segment */
 
 void DS_Output (const DataSeg* S, FILE* F);