mirror of
https://github.com/opnsense/src.git
synced 2026-04-02 07:55:21 -04:00
16 lines
456 B
C
16 lines
456 B
C
|
|
//===-- libdebugserver.h ----------------------------------------*- C++ -*-===//
|
||
|
|
//
|
||
|
|
// The LLVM Compiler Infrastructure
|
||
|
|
//
|
||
|
|
// This file is distributed under the University of Illinois Open Source
|
||
|
|
// License. See LICENSE.TXT for details.
|
||
|
|
//
|
||
|
|
//===----------------------------------------------------------------------===//
|
||
|
|
|
||
|
|
#ifndef debugserver_libdebugserver_h
|
||
|
|
#define debugserver_libdebugserver_h
|
||
|
|
|
||
|
|
int debug_server_main(int fd);
|
||
|
|
|
||
|
|
#endif
|