Changeset 5a6cc679 in mainline for uspace/lib/c/generic/io/kio.c
- Timestamp:
- 2018-01-31T02:21:24Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
-
uspace/lib/c/generic/io/kio.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/kio.c
r132ab5d1 r5a6cc679 43 43 #include <io/printf_core.h> 44 44 45 int kio_write(const void *buf, size_t size, size_t *nwritten)45 errno_t kio_write(const void *buf, size_t size, size_t *nwritten) 46 46 { 47 int rc = (int) __SYSCALL3(SYS_KIO, KIO_WRITE, (sysarg_t) buf, size);47 errno_t rc = (errno_t) __SYSCALL3(SYS_KIO, KIO_WRITE, (sysarg_t) buf, size); 48 48 49 49 if (rc == EOK)
Note:
See TracChangeset
for help on using the changeset viewer.
