Fix warning when _POSIX_MAPPED_FILES is already defined in unistd.h

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8436 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-09-10 15:09:45 +00:00
parent a176a8bb39
commit 88b4855499

View File

@ -41,7 +41,9 @@ namespace {
};
}
#ifndef _POSIX_MAPPED_FILES
#define _POSIX_MAPPED_FILES
#endif
#include <unistd.h>
#include <sys/mman.h>