Ignore:
File:
1 edited

Legend:

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

    rc1ee231 r1c40091  
    1010// Created On       : Thu Mar 30 12:30:01 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Jun 17 11:07:13 2020
    13 // Update Count     : 12
     12// Last Modified On : Thu Nov 21 17:16:30 2019
     13// Update Count     : 10
    1414//
    1515
     16extern "C" {
    1617#include <stdio.h>
    1718#include <stdlib.h>
     
    2021#include <stdarg.h>
    2122#include <unistd.h>
     23}
    2224
    2325enum { buffer_size = 4096 };
     
    2527
    2628extern "C" {
    27         void __cfaabi_bits_write( int fd, const char in_buffer[], int len ) {
     29
     30        void __cfaabi_bits_write( int fd, const char *in_buffer, int len ) {
    2831                // ensure all data is written
    2932                for ( int count = 0, retcode; count < len; count += retcode ) {
Note: See TracChangeset for help on using the changeset viewer.