Subversion Repositories HelenOS

Rev

Rev 4263 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4263 Rev 4581
Line 18... Line 18...
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 "mkdir/entry.h"
21
#include "mkdir/entry.h"
22
#include "rm/entry.h"
22
#include "rm/entry.h"
-
 
23
#include "bdd/entry.h"
23
#include "cat/entry.h"
24
#include "cat/entry.h"
24
#include "touch/entry.h"
25
#include "touch/entry.h"
25
#include "ls/entry.h"
26
#include "ls/entry.h"
26
#include "pwd/entry.h"
27
#include "pwd/entry.h"
27
#include "sleep/entry.h"
28
#include "sleep/entry.h"
28
#include "cp/entry.h"
29
#include "cp/entry.h"
-
 
30
#include "mv/entry.h"
-
 
31
#include "mount/entry.h"
29
#include "kcon/entry.h"
32
#include "kcon/entry.h"
30
 
33
 
31
/* Each .def function fills the module_t struct with the individual name, entry
34
/* Each .def function fills the module_t struct with the individual name, entry
32
 * point, help entry point, etc. You can use config.h to control what modules
35
 * point, help entry point, etc. You can use config.h to control what modules
33
 * are loaded based on what libraries exist on the system. */
36
 * are loaded based on what libraries exist on the system. */
34
 
37
 
35
module_t modules[] = {
38
module_t modules[] = {
36
#include "help/help_def.h"
39
#include "help/help_def.h"
37
#include "mkdir/mkdir_def.h"
40
#include "mkdir/mkdir_def.h"
38
#include "rm/rm_def.h"
41
#include "rm/rm_def.h"
-
 
42
#include "bdd/bdd_def.h"
39
#include "cat/cat_def.h"
43
#include "cat/cat_def.h"
40
#include "touch/touch_def.h"
44
#include "touch/touch_def.h"
41
#include "ls/ls_def.h"
45
#include "ls/ls_def.h"
42
#include "pwd/pwd_def.h"
46
#include "pwd/pwd_def.h"
43
#include "sleep/sleep_def.h"
47
#include "sleep/sleep_def.h"
44
#include "cp/cp_def.h"
48
#include "cp/cp_def.h"
-
 
49
#include "mv/mv_def.h"
-
 
50
#include "mount/mount_def.h"
45
#include "kcon/kcon_def.h"
51
#include "kcon/kcon_def.h"
-
 
52
 
46
    {NULL, NULL, NULL, NULL}
53
    {NULL, NULL, NULL, NULL}
47
};
54
};
48
 
55
 
49
#endif
56
#endif