Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pal_log.c « System.Native « Unix « Native « libraries « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 086ebe5c5b50dab979d160c7d003769d13ceed08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

#include "pal_config.h"
#include "pal_log.h"

#include <stdio.h>

void SystemNative_Log(uint8_t* buffer, int32_t length)
{
    fwrite(buffer, 1, (size_t)length, stdout);
    fflush(stdout);
}