xref: /haiku/src/tools/bfs_shell/additional_commands.cpp (revision a3e794ae459fec76826407f8ba8c94cd3535f128)
1 /*
2  * Copyright 2012, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "fssh.h"
8 
9 #include "command_checkfs.h"
10 
11 
12 namespace FSShell {
13 
14 
15 void
16 register_additional_commands()
17 {
18 	CommandManager::Default()->AddCommand(command_checkfs, "checkfs",
19 		"check file system");
20 }
21 
22 
23 }	// namespace FSShell
24