Subversion Repositories HelenOS

Rev

Rev 3371 | Rev 3420 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3371 Rev 3373
Line 29... Line 29...
29
/* Each .def function fills the module_t struct with the individual name, entry
29
/* Each .def function fills the module_t struct with the individual name, entry
30
 * point, help entry point, etc. You can use config.h to control what modules
30
 * point, help entry point, etc. You can use config.h to control what modules
31
 * are loaded based on what libraries exist on the system. */
31
 * are loaded based on what libraries exist on the system. */
32
 
32
 
33
module_t modules[] = {
33
module_t modules[] = {
34
#include "help/help.def"
34
#include "help/help_def.h"
35
#include "quit/quit.def"
35
#include "quit/quit_def.h"
36
#include "mkdir/mkdir.def"
36
#include "mkdir/mkdir_def.h"
37
#include "rm/rm.def"
37
#include "rm/rm_def.h"
38
#include "cat/cat.def"
38
#include "cat/cat_def.h"
39
#include "touch/touch.def"
39
#include "touch/touch_def.h"
40
#include "ls/ls.def"
40
#include "ls/ls_def.h"
41
#include "pwd/pwd.def"
41
#include "pwd/pwd_def.h"
42
    {NULL, NULL, NULL, NULL}
42
    {NULL, NULL, NULL, NULL}
43
};
43
};
44
 
44
 
45
#endif
45
#endif