]> git.sur5r.net Git - cc65/blobdiff - src/ar65/library.h
atari5200: name conio constructor 'initconio'
[cc65] / src / ar65 / library.h
index abb8c475fc3d9a9cc38173075378fc9e0900c9de..861d56a785c2edb7b6d8bfc6080b2adc0832d517 100644 (file)
@@ -51,9 +51,6 @@
 /* Name of the library file */
 extern const char* LibName;
 
-/* File descriptor for the new library file */
-extern FILE*    NewLib;
-
 
 
 /*****************************************************************************/
@@ -64,28 +61,25 @@ extern FILE*    NewLib;
 
 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
-
-
-