Fix FreeBSD build.
authorben <ben@strongloop.com>
Wed, 6 May 2015 10:57:00 +0000 (03:57 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 6 May 2015 10:57:10 +0000 (10:57 +0000)
Fix the following build error:

    ../deps/v8/src/compiler/graph-visualizer.h:23:1:
    error: 'FILE' does not name a type

See https://github.com/iojs/io.js/issues/1637 for background.

BUG=v8:4079
LOG=N

Review URL: https://codereview.chromium.org/1128053002

Cr-Commit-Position: refs/heads/master@{#28254}

src/compiler/graph-visualizer.h

index 10ea538..d719540 100644 (file)
@@ -5,6 +5,7 @@
 #ifndef V8_COMPILER_GRAPH_VISUALIZER_H_
 #define V8_COMPILER_GRAPH_VISUALIZER_H_
 
+#include <stdio.h>
 #include <iosfwd>
 
 namespace v8 {