Changeset 047aa46 in mainline for uspace/app/tester/ipc/hangup.c
- Timestamp:
- 2008-03-26T22:47:55Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e190a89b
- Parents:
- e13daa5d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/ipc/hangup.c
re13daa5d r047aa46 38 38 int phoneid; 39 39 40 printf("Select phoneid to hangup: 2-9 \n");40 printf("Select phoneid to hangup: 2-9 (Q to skip)\n"); 41 41 do { 42 42 c = getchar(); 43 if (c == 'Q' || c == 'q') 44 return TEST_SKIPPED; 43 45 } while (c < '2' || c > '9'); 44 46 phoneid = c - '0';
Note:
See TracChangeset
for help on using the changeset viewer.