Changeset 89ac5513 in mainline for uspace/app/bdsh/cmds/modules
- Timestamp:
- 2013-06-23T19:54:53Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ddb1922
- Parents:
- 3abf0760 (diff), 96cbd18 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/app/bdsh/cmds/modules
- Files:
-
- 4 deleted
- 3 edited
-
bdd/bdd.c (deleted)
-
bdd/bdd.h (deleted)
-
bdd/bdd_def.h (deleted)
-
bdd/entry.h (deleted)
-
cmp/cmp.c (modified) (1 diff)
-
modules.h (modified) (2 diffs)
-
sleep/sleep.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/cmp/cmp.c
r3abf0760 r89ac5513 107 107 108 108 if (offset[0] != offset[1] || 109 bcmp(buffer[0], buffer[1], offset[0])) {109 memcmp(buffer[0], buffer[1], offset[0]) != 0) { 110 110 rc = 1; 111 111 goto end; -
uspace/app/bdsh/cmds/modules/modules.h
r3abf0760 r89ac5513 50 50 #include "mkfile/entry.h" 51 51 #include "rm/entry.h" 52 #include "bdd/entry.h"53 52 #include "cat/entry.h" 54 53 #include "touch/entry.h" … … 74 73 #include "mkfile/mkfile_def.h" 75 74 #include "rm/rm_def.h" 76 #include "bdd/bdd_def.h"77 75 #include "cat/cat_def.h" 78 76 #include "touch/touch_def.h" -
uspace/app/bdsh/cmds/modules/sleep/sleep.c
r3abf0760 r89ac5513 67 67 uint64_t whole_seconds; 68 68 uint64_t frac_seconds; 69 c har *endptr;69 const char *endptr; 70 70 71 71 /* Check for whole seconds */
Note:
See TracChangeset
for help on using the changeset viewer.
