blob: 2f95365b859c1c055c071560e2d075b386d86046 [file] [log] [blame]
Chris Bienemanefd065e2017-04-12 21:56:29 +00001//===-- debugserver_LogCallback.cpp -----------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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-exception
Chris Bienemanefd065e2017-04-12 21:56:29 +00006//
7//===----------------------------------------------------------------------===//
8
9//------------------------------------------------------------------------------
10// this function is defined in debugserver.cpp, but is needed to link the
11// debugserver Common library. It is for logging only, so it is left
12// unimplemented here.
13//------------------------------------------------------------------------------
14
15#include <stdint.h>
16#include <stdarg.h>
17
18void FileLogCallback(void *baton, uint32_t flags, const char *format,
19 va_list args) {}