Changeset d5b37b6 in mainline for uspace/lib/c/generic/io/kio.c
- Timestamp:
- 2025-04-17T15:14:03Z (5 days ago)
- Branches:
- master
- Children:
- 690ad20
- Parents:
- 571cc2d
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2025-04-11 17:35:09)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2025-04-17 15:14:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/kio.c
r571cc2d rd5b37b6 34 34 */ 35 35 36 #include <abi/syscall.h> 36 37 #include <stddef.h> 37 38 #include <libc.h> … … 112 113 } 113 114 115 size_t kio_read(char32_t *buf, size_t n, size_t at) 116 { 117 return __SYSCALL3(SYS_KIO_READ, (sysarg_t) buf, n, at); 118 } 119 114 120 /** Print formatted text to kio. 115 121 *
Note:
See TracChangeset
for help on using the changeset viewer.