There is no reason to #define fd

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11190 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-02-08 19:33:07 +00:00
parent 4bb2969393
commit 6c0398ed47

View File

@ -72,10 +72,9 @@ static void *getMemory(unsigned NumBytes) {
abort();
#endif
int fd = -1;
#if defined(__linux__)
#define fd 0
#else
#define fd -1
fd = 0;
#endif
unsigned mmapFlags = MAP_PRIVATE|MAP_ANONYMOUS;