mirror of
https://github.com/libretro/RetroArch
synced 2024-12-26 21:29:08 +00:00
18 lines
292 B
C
18 lines
292 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>
|
|
|
|
bool jit_available(void);
|
|
bool jb_enable_ptrace_hack(void);
|
|
|
|
#endif /* JITSupport_h */
|