mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 06:55:01 +00:00
Fix w32 build
This commit is contained in:
parent
b6ae1b64f2
commit
e6ce20dabe
@ -540,7 +540,10 @@ R_API int r_is_heap (void *p) {
|
||||
}
|
||||
|
||||
R_API char *r_sys_pid_to_path(int pid) {
|
||||
#if __APPLE__
|
||||
#if __WINDOWS__
|
||||
// TODO: implement r_sys_pid_to_path on W32
|
||||
return NULL;
|
||||
#elif __APPLE__
|
||||
int ret;
|
||||
char pathbuf[PROC_PIDPATHINFO_MAXSIZE];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user