Raphael Isemann | 8081428 | 2020-01-24 08:23:27 +0100 | [diff] [blame] | 1 | //===-- debugserver_LogCallback.cpp ---------------------------------------===// |
Chris Bieneman | efd065e | 2017-04-12 21:56:29 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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-exception |
Chris Bieneman | efd065e | 2017-04-12 21:56:29 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Chris Bieneman | efd065e | 2017-04-12 21:56:29 +0000 | [diff] [blame] | 9 | // 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 Bieneman | efd065e | 2017-04-12 21:56:29 +0000 | [diff] [blame] | 12 | |
| 13 | #include <stdint.h> |
| 14 | #include <stdarg.h> |
| 15 | |
| 16 | void FileLogCallback(void *baton, uint32_t flags, const char *format, |
| 17 | va_list args) {} |