mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-06 00:00:58 +00:00
15 lines
266 B
C++
15 lines
266 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2023, Jesús Lapastora <cyber.gsuscode@gmail.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <LibJIT/GDB.h>
|
||
|
|
|
||
|
|
namespace JIT::GDB {
|
||
|
|
Optional<FixedArray<u8>> build_gdb_image(ReadonlyBytes, StringView, StringView)
|
||
|
|
{
|
||
|
|
return {};
|
||
|
|
}
|
||
|
|
}
|