diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/u8c/dbgprint.h | 4 | ||||
-rw-r--r-- | include/u8c/ver.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/u8c/dbgprint.h b/include/u8c/dbgprint.h index fd7a460..42fcb16 100644 --- a/include/u8c/dbgprint.h +++ b/include/u8c/dbgprint.h @@ -22,8 +22,8 @@ # define u8c_dbgprint(...) ((void)0x0) # endif # else -# include <u8c/print.h> +# include <u8c/println.h> # include <stdio.h> -# define u8c_dbgprint(...) u8c_print(stderr,__VA_ARGS__) +# define u8c_dbgprint(...) u8c_println(stderr,__VA_ARGS__) # endif # endif diff --git a/include/u8c/ver.h b/include/u8c/ver.h index 3122392..8dc9042 100644 --- a/include/u8c/ver.h +++ b/include/u8c/ver.h @@ -16,5 +16,5 @@ /* Version */ # if !defined(u8c_ver) # include <stdint.h> -# define u8c_ver (UINT64_C(0xD)) +# define u8c_ver (UINT64_C(0xE)) # endif |