mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 510657 - simple OS/2 build fix in nanojit/avmplus, r=graydon
--HG-- extra : rebase_source : 7d4d1a75b659862460ecccdef80ce95fca119e32
This commit is contained in:
parent
93bcc968f6
commit
26a48fb72d
@ -178,7 +178,7 @@ nanojit::CodeAlloc::allocCodeChunk(size_t nbytes) {
|
||||
|
||||
void
|
||||
nanojit::CodeAlloc::freeCodeChunk(void *p, size_t nbytes) {
|
||||
free(p);
|
||||
::free(p);
|
||||
}
|
||||
|
||||
#endif // WIN32
|
||||
|
@ -41,7 +41,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#if defined(AVMPLUS_UNIX)
|
||||
#if defined(AVMPLUS_UNIX) || defined(AVMPLUS_OS2)
|
||||
#include <unistd.h>
|
||||
#include <sys/mman.h>
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user