Changeset 6fa9a99d in mainline for uspace/lib/c/include/io/kio.h
- Timestamp:
- 2014-01-05T17:50:01Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 91db0280
- Parents:
- 208b5f5
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/io/kio.h
r208b5f5 r6fa9a99d 33 33 */ 34 34 35 #ifndef LIBC_IO_K LOG_H_36 #define LIBC_IO_K LOG_H_35 #ifndef LIBC_IO_KIO_H_ 36 #define LIBC_IO_KIO_H_ 37 37 38 38 #include <sys/types.h> … … 40 40 #include <io/verify.h> 41 41 42 extern size_t k log_write(const void *, size_t);43 extern void k log_update(void);44 extern void k log_command(const void *, size_t);45 extern int k log_printf(const char *, ...)42 extern size_t kio_write(const void *, size_t); 43 extern void kio_update(void); 44 extern void kio_command(const void *, size_t); 45 extern int kio_printf(const char *, ...) 46 46 PRINTF_ATTRIBUTE(1, 2); 47 extern int k log_vprintf(const char *, va_list);47 extern int kio_vprintf(const char *, va_list); 48 48 49 49 #endif
Note:
See TracChangeset
for help on using the changeset viewer.