1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

doc changes

This commit is contained in:
Kaspar Schleiser 2010-09-23 10:33:00 +02:00
parent 4c3e26d7d7
commit ead6f0c8ba

View File

@ -37,11 +37,8 @@ and the mailinglist (subscription via web site)
* name of a handler, the handler will be called with the whole * name of a handler, the handler will be called with the whole
* command line as parameter. * command line as parameter.
* *
* @author Freie Universität Berlin, Computer Systems & Telematics, FeuerWhere project * @author Freie Universität Berlin, Computer Systems & Telematics
* @author Kaspar Schleiser <kaspar@schleiser.de> * @author Kaspar Schleiser <kaspar@schleiser.de>
* @version 2.0 $Revision$
*
* @note $Id$
*/ */
#include <sys/unistd.h> #include <sys/unistd.h>
@ -111,6 +108,4 @@ void shell_register_cmd(shell_t *shell, char* name, void (*handler)(char* args))
hashtable_insert(shell->h, name, handler); hashtable_insert(shell->h, name, handler);
} }
/** /** @} */
* @}
*/