1bd2d88d6SJason Molenda //===-- libdebugserver.h ----------------------------------------*- C++ -*-===//
2bd2d88d6SJason Molenda //
3*2946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*2946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
5*2946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6bd2d88d6SJason Molenda //
7bd2d88d6SJason Molenda //===----------------------------------------------------------------------===//
8d676074dSJason Molenda 
9d676074dSJason Molenda #ifndef debugserver_libdebugserver_h
10d676074dSJason Molenda #define debugserver_libdebugserver_h
11d676074dSJason Molenda 
12d676074dSJason Molenda int debug_server_main(int fd);
13d676074dSJason Molenda 
14d676074dSJason Molenda #endif
15