mirror of
https://github.com/libretro/RetroArch
synced 2024-12-29 12:31:05 +00:00
18 lines
310 B
C
18 lines
310 B
C
|
//
|
||
|
// JITSupport.h
|
||
|
// RetroArchiOS
|
||
|
//
|
||
|
// Created by Yoshi Sugawara on 9/25/21.
|
||
|
// Copyright © 2021 RetroArch. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef JITSupport_h
|
||
|
#define JITSupport_h
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
static bool jb_has_debugger_attached(void);
|
||
|
bool jb_enable_ptrace_hack(void);
|
||
|
|
||
|
#endif /* JITSupport_h */
|