Changes in uspace/lib/c/generic/io/kio.c [b7fd2a0:8d2dd7f2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/kio.c
rb7fd2a0 r8d2dd7f2 43 43 #include <io/printf_core.h> 44 44 45 errno_t kio_write(const void *buf, size_t size, size_t *nwritten)45 int kio_write(const void *buf, size_t size, size_t *nwritten) 46 46 { 47 errno_t rc = (errno_t) __SYSCALL3(SYS_KIO, KIO_WRITE, (sysarg_t) buf, size);47 int rc = (int) __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.