Changeset e190a89b in mainline for uspace/app/tester/ipc/send_async.c
- Timestamp:
- 2008-03-27T13:56:21Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2f60a529
- Parents:
- 047aa46
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/ipc/send_async.c
r047aa46 re190a89b 42 42 char c; 43 43 44 printf("Select phoneid to send msg: 2-9 ( Qto skip)\n");44 printf("Select phoneid to send msg: 2-9 (q to skip)\n"); 45 45 do { 46 46 c = getchar(); 47 if ( c == 'Q' || c == 'q')47 if ((c == 'Q') || (c == 'q')) 48 48 return TEST_SKIPPED; 49 49 } while (c < '2' || c > '9');
Note:
See TracChangeset
for help on using the changeset viewer.