diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:40:19 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:40:19 -0400 |
commit | c4f8ef91f18d854a4ede7a94e95b2eab898d6963 (patch) | |
tree | c2772c4f380a684b6fa347f03b13f9476bf9500c /include/device/uart.h | |
parent | b905869a35f062a4e5072f10bec3a2ba3db0e365 (diff) | |
download | jove-kernel-c4f8ef91f18d854a4ede7a94e95b2eab898d6963.tar.gz jove-kernel-c4f8ef91f18d854a4ede7a94e95b2eab898d6963.tar.bz2 jove-kernel-c4f8ef91f18d854a4ede7a94e95b2eab898d6963.zip |
working usermode objdir iteration
Diffstat (limited to 'include/device/uart.h')
-rw-r--r-- | include/device/uart.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/device/uart.h b/include/device/uart.h index 3d481a2..9e5c3d3 100644 --- a/include/device/uart.h +++ b/include/device/uart.h @@ -1,11 +1,10 @@ #ifndef _JOVE_DEVICE_UART_H #define _JOVE_DEVICE_UART_H 1 -#include <stdint.h> #include <stddef.h> #include "object.h" -void uart_write(objdir_t *dir, uint64_t entryi, const char *s, size_t w); +void uart_write(objdir_t *dir, path_byte_t *path, const char *s, size_t w); #endif |