Changeset 9b11daef in mainline for uspace/lib/libc/generic/io/console.c
- Timestamp:
- 2009-09-10T21:27:41Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8be2833
- Parents:
- 6b89868
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/io/console.c
r6b89868 r9b11daef 45 45 } 46 46 47 int console_get_size(int phone, ipcarg_t * rows, ipcarg_t *cols)47 int console_get_size(int phone, ipcarg_t *cols, ipcarg_t *rows) 48 48 { 49 return async_req_0_2(phone, CONSOLE_GET_SIZE, rows, cols);49 return async_req_0_2(phone, CONSOLE_GET_SIZE, cols, rows); 50 50 } 51 51 … … 86 86 } 87 87 88 void console_goto(int phone, ipcarg_t row, ipcarg_t col)88 void console_goto(int phone, ipcarg_t col, ipcarg_t row) 89 89 { 90 async_msg_2(phone, CONSOLE_GOTO, row, col);90 async_msg_2(phone, CONSOLE_GOTO, col, row); 91 91 } 92 92
Note:
See TracChangeset
for help on using the changeset viewer.