mirror of
https://review.haiku-os.org/haiku
synced 2025-02-06 22:05:27 +01:00
21 lines
294 B
C++
21 lines
294 B
C++
|
/*
|
||
|
* Copyright 2012, Axel Dörfler, axeld@pinc-software.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "fssh.h"
|
||
|
|
||
|
|
||
|
namespace FSShell {
|
||
|
|
||
|
|
||
|
void
|
||
|
register_additional_commands()
|
||
|
{
|
||
|
// To be implemented by file system specific shell implementations.
|
||
|
}
|
||
|
|
||
|
|
||
|
} // namespace FSShell
|