Changeset 69145dae in mainline for uspace/app/bdsh/cmds/modules
- Timestamp:
- 2008-08-28T02:51:25Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 88944695
- Parents:
- 79872cd
- Location:
- uspace/app/bdsh/cmds/modules
- Files:
-
- 1 edited
- 4 moved
-
modules.h (modified) (2 diffs)
-
pwd/entry.h (moved) (moved from uspace/app/bdsh/cmds/builtins/pwd/entry.h ) (1 diff)
-
pwd/pwd.c (moved) (moved from uspace/app/bdsh/cmds/builtins/pwd/pwd.c ) (1 diff)
-
pwd/pwd.def (moved) (moved from uspace/app/bdsh/cmds/builtins/pwd/pwd.def )
-
pwd/pwd.h (moved) (moved from uspace/app/bdsh/cmds/builtins/pwd/pwd.h )
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/modules.h
r79872cd r69145dae 25 25 #include "touch/entry.h" 26 26 #include "ls/entry.h" 27 #include "pwd/entry.h" 27 28 28 29 /* Each .def function fills the module_t struct with the individual name, entry … … 38 39 #include "touch/touch.def" 39 40 #include "ls/ls.def" 41 #include "pwd/pwd.def" 40 42 {NULL, NULL, NULL, NULL} 41 43 }; -
uspace/app/bdsh/cmds/modules/pwd/entry.h
r79872cd r69145dae 6 6 /* Entry points for the pwd command */ 7 7 extern void * help_cmd_pwd(unsigned int); 8 extern int * cmd_pwd(char * [], cliuser_t*);8 extern int * cmd_pwd(char **); 9 9 10 10 #endif -
uspace/app/bdsh/cmds/modules/pwd/pwd.c
r79872cd r69145dae 45 45 return CMD_VOID; 46 46 } 47 48 int * cmd_pwd(char *argv[] , cliuser_t *usr)47 48 int * cmd_pwd(char *argv[]) 49 49 { 50 50 char *buff;
Note:
See TracChangeset
for help on using the changeset viewer.
