Rev 3386 | Rev 4263 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3386 | Rev 4153 | ||
|---|---|---|---|
| Line 16... | Line 16... | ||
| 16 | #include "config.h" |
16 | #include "config.h" |
| 17 | 17 | ||
| 18 | /* Prototypes for each module's entry (help/exec) points */ |
18 | /* Prototypes for each module's entry (help/exec) points */ |
| 19 | 19 | ||
| 20 | #include "help/entry.h" |
20 | #include "help/entry.h" |
| 21 | #include "quit/entry.h" |
- | |
| 22 | #include "mkdir/entry.h" |
21 | #include "mkdir/entry.h" |
| 23 | #include "rm/entry.h" |
22 | #include "rm/entry.h" |
| 24 | #include "cat/entry.h" |
23 | #include "cat/entry.h" |
| 25 | #include "touch/entry.h" |
24 | #include "touch/entry.h" |
| 26 | #include "ls/entry.h" |
25 | #include "ls/entry.h" |
| 27 | #include "pwd/entry.h" |
26 | #include "pwd/entry.h" |
| - | 27 | #include "sleep/entry.h" |
|
| - | 28 | #include "cp/entry.h" |
|
| 28 | 29 | ||
| 29 | /* Each .def function fills the module_t struct with the individual name, entry |
30 | /* 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 |
31 | * 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. */ |
32 | * are loaded based on what libraries exist on the system. */ |
| 32 | 33 | ||
| 33 | module_t modules[] = { |
34 | module_t modules[] = { |
| 34 | #include "help/help_def.h" |
35 | #include "help/help_def.h" |
| 35 | #include "quit/quit_def.h" |
- | |
| 36 | #include "mkdir/mkdir_def.h" |
36 | #include "mkdir/mkdir_def.h" |
| 37 | #include "rm/rm_def.h" |
37 | #include "rm/rm_def.h" |
| 38 | #include "cat/cat_def.h" |
38 | #include "cat/cat_def.h" |
| 39 | #include "touch/touch_def.h" |
39 | #include "touch/touch_def.h" |
| 40 | #include "ls/ls_def.h" |
40 | #include "ls/ls_def.h" |
| 41 | #include "pwd/pwd_def.h" |
41 | #include "pwd/pwd_def.h" |
| - | 42 | #include "sleep/sleep_def.h" |
|
| - | 43 | #include "cp/cp_def.h" |
|
| 42 | {NULL, NULL, NULL, NULL} |
44 | {NULL, NULL, NULL, NULL} |
| 43 | }; |
45 | }; |
| 44 | 46 | ||
| 45 | #endif |
47 | #endif |