blob: 2c7da2d127cb8851d9740883e7007217dcb71dec [file] [log] [blame]
Raphael Isemann80814282020-01-24 08:23:27 +01001//===-- debugserver_LogCallback.cpp ---------------------------------------===//
Chris Bienemanefd065e2017-04-12 21:56:29 +00002//
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
Chris Bienemanefd065e2017-04-12 21:56:29 +00009// this function is defined in debugserver.cpp, but is needed to link the
10// debugserver Common library. It is for logging only, so it is left
11// unimplemented here.
Chris Bienemanefd065e2017-04-12 21:56:29 +000012
13#include <stdint.h>
14#include <stdarg.h>
15
16void FileLogCallback(void *baton, uint32_t flags, const char *format,
17 va_list args) {}