Changes in uspace/lib/c/generic/io/kio.c [8d2dd7f2:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/kio.c
r8d2dd7f2 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.