libs/port: Add support for amd64-mingw32msvc platform.

This commit is contained in:
André Hentschel 2010-05-27 20:32:42 +02:00 committed by Alexandre Julliard
parent 4bd8d384c4
commit fd5b4f4c0c

View file

@ -30,7 +30,7 @@ size_t getpagesize(void)
{
# ifdef __svr4__
return sysconf(_SC_PAGESIZE);
# elif defined(__i386__)
# elif defined(__i386__) || defined(__x86_64__)
return 4096;
# else
# error Cannot get the page size on this platform