Fix w32 build

This commit is contained in:
pancake 2013-08-19 00:41:44 +02:00
parent b6ae1b64f2
commit e6ce20dabe

View File

@ -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];