Fixed a bug causing pspp to crash when computed variables had no format
[pspp-builds.git] / src / file-handle.h
index 34a859536eb1e2f5c2eaf56eabe292a9a18010ad..b086d7870340fd7c57e6d3364f8760138f5addf7 100644 (file)
@@ -78,13 +78,13 @@ struct file_handle
     void *ext;                 /* Extension struct for fhuser use. */
   };
 
-/* All the file handles in the system. */
-extern struct avl_tree *files;
-
 /* Pointer to the file handle that corresponds to data in the command
    file entered via BEGIN DATA/END DATA. */
 extern struct file_handle *inline_file;
 
+/* Initialization. */
+void fh_init_files (void);
+
 /* Opening and closing handles. */
 struct file_handle *fh_get_handle_by_name (const char name[9]);
 struct file_handle *fh_get_handle_by_filename (const char *filename);