]> git.sur5r.net Git - cc65/blobdiff - src/ar65/library.h
goto.c warning fix for implicit truncation
[cc65] / src / ar65 / library.h
index 3453f1ea53581ccde5bd7f44f9fcfd9a25be73da..861d56a785c2edb7b6d8bfc6080b2adc0832d517 100644 (file)
@@ -61,28 +61,25 @@ extern const char* LibName;
 
 void LibOpen (const char* Name, int MustExist, int NeedTemp);
 /* Open an existing library and a temporary copy. If MustExist is true, the
- * old library is expected to exist. If NeedTemp is true, a temporary library
- * is created.
- */
+** old library is expected to exist. If NeedTemp is true, a temporary library
+** is created.
+*/
 
 unsigned long LibCopyTo (FILE* F, unsigned long Bytes);
 /* Copy data from F to the temp library file, return the start position in
- * the temporary library file.
- */
+** the temporary library file.
+*/
 
 void LibCopyFrom (unsigned long Pos, unsigned long Bytes, FILE* F);
 /* Copy data from the library file into another file */
 
 void LibClose (void);
 /* Write remaining data, close both files and copy the temp file to the old
- * filename
- */
+** filename
+*/
 
 
 
 /* End of library.h */
 
 #endif
-
-
-