Changes in libcfa/src/bits/debug.cfa [16cc9f7:c1ee231]
- File:
-
- 1 edited
-
libcfa/src/bits/debug.cfa (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/debug.cfa
r16cc9f7 rc1ee231 10 10 // Created On : Thu Mar 30 12:30:01 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Apr 22 18:20:26 202213 // Update Count : 1 312 // Last Modified On : Wed Jun 17 11:07:13 2020 13 // Update Count : 12 14 14 // 15 15 … … 44 44 void __cfaabi_bits_release() __attribute__((__weak__)) {} 45 45 46 int__cfaabi_bits_print_safe ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) {46 void __cfaabi_bits_print_safe ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) { 47 47 va_list args; 48 48 … … 55 55 __cfaabi_bits_release(); 56 56 va_end( args ); 57 return len;58 57 } 59 58 60 int__cfaabi_bits_print_nolock( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) {59 void __cfaabi_bits_print_nolock( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) { 61 60 va_list args; 62 61 … … 67 66 68 67 va_end( args ); 69 return len;70 68 } 71 69 72 int__cfaabi_bits_print_vararg( int fd, const char fmt[], va_list args ) {70 void __cfaabi_bits_print_vararg( int fd, const char fmt[], va_list args ) { 73 71 int len = vsnprintf( buffer, buffer_size, fmt, args ); 74 72 __cfaabi_bits_write( fd, buffer, len ); 75 return len;76 73 } 77 74 78 int__cfaabi_bits_print_buffer( int fd, char in_buffer[], int in_buffer_size, const char fmt[], ... ) __attribute__(( format(printf, 4, 5) )) {75 void __cfaabi_bits_print_buffer( int fd, char in_buffer[], int in_buffer_size, const char fmt[], ... ) __attribute__(( format(printf, 4, 5) )) { 79 76 va_list args; 80 77 … … 85 82 86 83 va_end( args ); 87 return len;88 84 } 89 85 }
Note:
See TracChangeset
for help on using the changeset viewer.