Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/bits/debug.cfa

    r16cc9f7 rc1ee231  
    1010// Created On       : Thu Mar 30 12:30:01 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Apr 22 18:20:26 2022
    13 // Update Count     : 13
     12// Last Modified On : Wed Jun 17 11:07:13 2020
     13// Update Count     : 12
    1414//
    1515
     
    4444        void __cfaabi_bits_release() __attribute__((__weak__)) {}
    4545
    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) )) {
    4747                va_list args;
    4848
     
    5555                __cfaabi_bits_release();
    5656                va_end( args );
    57                 return len;
    5857        }
    5958
    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) )) {
    6160                va_list args;
    6261
     
    6766
    6867                va_end( args );
    69                 return len;
    7068        }
    7169
    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 ) {
    7371                int len = vsnprintf( buffer, buffer_size, fmt, args );
    7472                __cfaabi_bits_write( fd, buffer, len );
    75                 return len;
    7673        }
    7774
    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) )) {
    7976                va_list args;
    8077
     
    8582
    8683                va_end( args );
    87                 return len;
    8884        }
    8985}
Note: See TracChangeset for help on using the changeset viewer.