xref: /haiku/src/tools/bfs_shell/additional_commands.cpp (revision 204dee708a999d5a71d0cb9497650ee7cef85d0a)
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