Changeset eb748a0 in mainline for uspace/app/bdsh/cmds/builtins/batch/batch.c
- Timestamp:
- 2018-03-26T22:07:55Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2172284
- Parents:
- af60409
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/builtins/batch/batch.c
raf60409 reb748a0 74 74 75 75 /* Count the arguments */ 76 for (argc = 0; argv[argc] != NULL; argc ++); 76 argc = 0; 77 while (argv[argc] != NULL) 78 argc++; 77 79 78 80 if (argc < 2) {
Note:
See TracChangeset
for help on using the changeset viewer.