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
12namespace FSShell {
13
14
15void
16register_additional_commands()
17{
18	CommandManager::Default()->AddCommand(command_checkfs, "checkfs",
19		"check file system");
20}
21
22
23}	// namespace FSShell
24