brintos

brintos / llvm-project-archived public Read only

0
0
Text · 686 B · 2c7da2d Raw
18 lines · cpp
1//===-- debugserver_LogCallback.cpp ---------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9// this function is defined in debugserver.cpp, but is needed to link the10// debugserver Common library. It is for logging only, so it is left11// unimplemented here.12 13#include <stdint.h>14#include <stdarg.h>15 16void FileLogCallback(void *baton, uint32_t flags, const char *format,17                     va_list args) {}18