diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-04-03 21:48:04 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-03 15:48:04 +0200 |
| commit | 8cba915bca8d48a7ac4d9571004975320f71a7ff (patch) | |
| tree | 259c7742564658696da8f75f421e29c1ceb9bf7e /src/include/bridge.h | |
| parent | cd3163a78585c35d41a18f248cb9575c46ffab38 (diff) | |
| download | box64-8cba915bca8d48a7ac4d9571004975320f71a7ff.tar.gz box64-8cba915bca8d48a7ac4d9571004975320f71a7ff.zip | |
Moved more functions to os.h (#2497)
* Removed some unused function declarations * Moved more functions to os.h * review
Diffstat (limited to 'src/include/bridge.h')
| -rw-r--r-- | src/include/bridge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/bridge.h b/src/include/bridge.h index e87e5d45..a4797bce 100644 --- a/src/include/bridge.h +++ b/src/include/bridge.h @@ -31,6 +31,6 @@ void init_bridge_helper(void); void fini_bridge_helper(void); // Is what pointed at addr a native call? And if yes, to what function? -int isNativeCall(uintptr_t addr, int is32bits, uintptr_t* calladdress, uint16_t* retn); +int isNativeCallInternal(uintptr_t addr, int is32bits, uintptr_t* calladdress, uint16_t* retn); #endif //__BRIDGE_H_ |