Changeset e3fa92aa in mainline
- Timestamp:
- 2009-06-16T18:31:55Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fbbbb8a
- Parents:
- 103e7d7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/getvc/getvc.c
r103e7d7 re3fa92aa 84 84 stdout = fopen(argv[1], "w"); 85 85 stderr = fopen(argv[1], "w"); 86 87 /* 88 * FIXME: fopen() should actually detect that we are opening a console 89 * and it should set line-buffering mode automatically. 90 */ 91 setvbuf(stdout, NULL, _IOLBF, BUFSIZ); 86 92 87 93 if ((stdin == NULL) … … 91 97 92 98 version_print(argv[1]); 93 fflush(stdout);94 99 task_id_t id = spawn(argv[2]); 95 100 task_wait(id);
Note:
See TracChangeset
for help on using the changeset viewer.