Changeset b7fd2a0 in mainline for uspace/lib/c/generic/io/kio.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/kio.c
r36f0738 rb7fd2a0 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.