Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3276 → Rev 3277

/branches/shell/uspace/app/bdsh/cmds/modules/modules.h
19,6 → 19,11
 
#include "help/entry.h"
#include "quit/entry.h"
#include "mkdir/entry.h"
#include "rm/entry.h"
#include "cat/entry.h"
#include "touch/entry.h"
#include "ls/entry.h"
 
/* Each .def function fills the module_t struct with the individual name, entry
* point, help entry point, etc. You can use config.h to control what modules
27,6 → 32,11
module_t modules[] = {
#include "help/help.def"
#include "quit/quit.def"
#include "mkdir/mkdir.def"
#include "rm/rm.def"
#include "cat/cat.def"
#include "touch/touch.def"
#include "ls/ls.def"
{NULL, NULL, NULL, NULL}
};