Changes in uspace/app/bdsh/cmds/builtins/batch/batch.c [5a6cc679:eb748a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/builtins/batch/batch.c
r5a6cc679 reb748a0 32 32 #include <stddef.h> 33 33 #include <errno.h> 34 #include <str.h> 34 35 #include "config.h" 35 36 #include "util.h" … … 73 74 74 75 /* Count the arguments */ 75 for (argc = 0; argv[argc] != NULL; argc ++); 76 argc = 0; 77 while (argv[argc] != NULL) 78 argc++; 76 79 77 80 if (argc < 2) {
Note:
See TracChangeset
for help on using the changeset viewer.