Index: libcfa/src/bits/debug.cfa
===================================================================
--- libcfa/src/bits/debug.cfa	(revision e57de69c0baa0c956e6e86d671278dd61127f83f)
+++ libcfa/src/bits/debug.cfa	(revision 1784e9eaa809336db0cb8eef07e2de7f0e11a075)
@@ -10,6 +10,6 @@
 // Created On       : Thu Mar 30 12:30:01 2017
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Jun 17 11:07:13 2020
-// Update Count     : 12
+// Last Modified On : Fri Apr 22 18:20:26 2022
+// Update Count     : 13
 //
 
@@ -44,5 +44,5 @@
 	void __cfaabi_bits_release() __attribute__((__weak__)) {}
 
-	void __cfaabi_bits_print_safe  ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) {
+	int __cfaabi_bits_print_safe  ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) {
 		va_list args;
 
@@ -55,7 +55,8 @@
 		__cfaabi_bits_release();
 		va_end( args );
+		return len;
 	}
 
-	void __cfaabi_bits_print_nolock( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) {
+	int __cfaabi_bits_print_nolock( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) {
 		va_list args;
 
@@ -66,12 +67,14 @@
 
 		va_end( args );
+		return len;
 	}
 
-	void __cfaabi_bits_print_vararg( int fd, const char fmt[], va_list args ) {
+	int __cfaabi_bits_print_vararg( int fd, const char fmt[], va_list args ) {
 		int len = vsnprintf( buffer, buffer_size, fmt, args );
 		__cfaabi_bits_write( fd, buffer, len );
+		return len;
 	}
 
-	void __cfaabi_bits_print_buffer( int fd, char in_buffer[], int in_buffer_size, const char fmt[], ... ) __attribute__(( format(printf, 4, 5) )) {
+	int __cfaabi_bits_print_buffer( int fd, char in_buffer[], int in_buffer_size, const char fmt[], ... ) __attribute__(( format(printf, 4, 5) )) {
 		va_list args;
 
@@ -82,4 +85,5 @@
 
 		va_end( args );
+		return len;
 	}
 }
Index: libcfa/src/bits/debug.hfa
===================================================================
--- libcfa/src/bits/debug.hfa	(revision e57de69c0baa0c956e6e86d671278dd61127f83f)
+++ libcfa/src/bits/debug.hfa	(revision 1784e9eaa809336db0cb8eef07e2de7f0e11a075)
@@ -9,7 +9,7 @@
 // Author           : Thierry Delisle
 // Created On       : Mon Nov 28 12:27:26 2016
-// Last Modified By : Andrew Beach
-// Last Modified On : Mon Apr 27 10:15:00 2020
-// Update Count     : 10
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Fri Apr 22 18:21:56 2022
+// Update Count     : 11
 //
 
@@ -46,8 +46,8 @@
 	extern void __cfaabi_bits_acquire();
 	extern void __cfaabi_bits_release();
-	extern void __cfaabi_bits_print_safe  ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) ));
-	extern void __cfaabi_bits_print_nolock( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) ));
-	extern void __cfaabi_bits_print_vararg( int fd, const char fmt[], va_list arg );
-	extern void __cfaabi_bits_print_buffer( int fd, char buffer[], int buffer_size, const char fmt[], ... ) __attribute__(( format(printf, 4, 5) ));
+	extern int __cfaabi_bits_print_safe  ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) ));
+	extern int __cfaabi_bits_print_nolock( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) ));
+	extern int __cfaabi_bits_print_vararg( int fd, const char fmt[], va_list arg );
+	extern int __cfaabi_bits_print_buffer( int fd, char buffer[], int buffer_size, const char fmt[], ... ) __attribute__(( format(printf, 4, 5) ));
 
 #if defined(__CFA_DEBUG_PRINT__) \
