1*80814287SRaphael Isemann //===-- debugserver_LogCallback.cpp ---------------------------------------===// 2efd065e6SChris Bieneman // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6efd065e6SChris Bieneman // 7efd065e6SChris Bieneman //===----------------------------------------------------------------------===// 8efd065e6SChris Bieneman 9efd065e6SChris Bieneman // this function is defined in debugserver.cpp, but is needed to link the 10efd065e6SChris Bieneman // debugserver Common library. It is for logging only, so it is left 11efd065e6SChris Bieneman // unimplemented here. 12efd065e6SChris Bieneman 13efd065e6SChris Bieneman #include <stdint.h> 14efd065e6SChris Bieneman #include <stdarg.h> 15efd065e6SChris Bieneman FileLogCallback(void * baton,uint32_t flags,const char * format,va_list args)16efd065e6SChris Bienemanvoid FileLogCallback(void *baton, uint32_t flags, const char *format, 17efd065e6SChris Bieneman va_list args) {} 18