blob: 7a724b41977544ef4d5785c023dfa09e681c6688 [file] [log] [blame]
Chris Bienemanefd065e2017-04-12 21:56:29 +00001//===-- debugserver_LogCallback.cpp -----------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10//------------------------------------------------------------------------------
11// this function is defined in debugserver.cpp, but is needed to link the
12// debugserver Common library. It is for logging only, so it is left
13// unimplemented here.
14//------------------------------------------------------------------------------
15
16#include <stdint.h>
17#include <stdarg.h>
18
19void FileLogCallback(void *baton, uint32_t flags, const char *format,
20 va_list args) {}