diff options
Diffstat (limited to 'cmdline.h')
-rw-r--r-- | cmdline.h | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -22,6 +22,7 @@ #define BFS_CMDLINE_H #include "color.h" +#include "trie.h" /** * Various debugging flags. @@ -56,11 +57,6 @@ struct root { }; /** - * An open file for the command line. - */ -struct open_file; - -/** * The parsed command line. */ struct cmdline { @@ -103,7 +99,7 @@ struct cmdline { struct expr *expr; /** All the open files owned by the command line. */ - struct open_file *open_files; + struct trie open_files; /** The number of open files owned by the command line. */ int nopen_files; }; |