Ignore:
File:
1 edited

Legend:

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

    r4bb5d36 r16cc9f7  
    2121#include <unistd.h>
    2222
    23 #include "bits/defs.hfa"
    24 
    2523enum { buffer_size = 4096 };
    2624static char buffer[ buffer_size ];
    2725
    2826extern "C" {
    29         // would be cool to remove libcfa_public but it's needed for libcfathread
    30         void __cfaabi_bits_write( int fd, const char in_buffer[], int len ) libcfa_public {
     27        void __cfaabi_bits_write( int fd, const char in_buffer[], int len ) {
    3128                // ensure all data is written
    3229                for ( int count = 0, retcode; count < len; count += retcode ) {
     
    4744        void __cfaabi_bits_release() __attribute__((__weak__)) {}
    4845
    49         // would be cool to remove libcfa_public but it's needed for libcfathread
    50         int __cfaabi_bits_print_safe  ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) libcfa_public {
     46        int __cfaabi_bits_print_safe  ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) )) {
    5147                va_list args;
    5248
Note: See TracChangeset for help on using the changeset viewer.