Chris Bieneman | efd065e | 2017-04-12 21:56:29 +0000 | [diff] [blame] | 1 | //===-- 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 | |
| 19 | void FileLogCallback(void *baton, uint32_t flags, const char *format, |
| 20 | va_list args) {} |