diff options
author | Dmitry Vyukov <dvyukov@google.com> | 2012-07-27 18:13:03 +0000 |
---|---|---|
committer | Dmitry Vyukov <dvyukov@google.com> | 2012-07-27 18:13:03 +0000 |
commit | 55253100be1d82d1f780cfc1b3757af5d6309a01 (patch) | |
tree | c1af24adbd75761b1ff4f2a7ec4ba285f8eb52f3 /compiler-rt/lib/tsan/go/test.c | |
parent | 20c7eb3549b5feb007d555e6fbf013b4963e747f (diff) | |
download | bcm5719-llvm-55253100be1d82d1f780cfc1b3757af5d6309a01.tar.gz bcm5719-llvm-55253100be1d82d1f780cfc1b3757af5d6309a01.zip |
tsan: add missing include
llvm-svn: 160875
Diffstat (limited to 'compiler-rt/lib/tsan/go/test.c')
-rw-r--r-- | compiler-rt/lib/tsan/go/test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/lib/tsan/go/test.c b/compiler-rt/lib/tsan/go/test.c index 34d68eae9bc..5ef81be96c9 100644 --- a/compiler-rt/lib/tsan/go/test.c +++ b/compiler-rt/lib/tsan/go/test.c @@ -11,6 +11,8 @@ // //===----------------------------------------------------------------------===// +#include <stdio.h> + void __tsan_init(); void __tsan_fini(); void __tsan_go_start(int pgoid, int chgoid, void *pc); |