Ignore:
Timestamp:
Jul 17, 2009, 4:00:41 AM (16 years ago)
Author:
[email protected]
Message:

2009-07-17 Csaba Osztrogonac <[email protected]>

Reviewed by David Levin.

Build fix on platforms don't have MMAP.
https://bugs.webkit.org/show_bug.cgi?id=27365

  • interpreter/RegisterFile.h: Including stdio.h irrespectively of HAVE(MMAP)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/interpreter/RegisterFile.h

    r45891 r46025  
    3333#include "ExecutableAllocator.h"
    3434#include "Register.h"
     35#include <stdio.h>
    3536#include <wtf/Noncopyable.h>
    3637#include <wtf/VMTags.h>
     
    3839#if HAVE(MMAP)
    3940#include <errno.h>
    40 #include <stdio.h>
    4141#include <sys/mman.h>
    4242#endif
Note: See TracChangeset for help on using the changeset viewer.