diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-06 21:09:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-06 21:09:29 +0000 |
commit | efadd781f4967bfaaff91b89eb8549995cde0bb2 (patch) | |
tree | 5eb02c79095ade4af21f2f74aacf2cf7a36d75c0 /llvm/lib | |
parent | 11ecb1d8ca8d536665662028f2aa8698606eaba7 (diff) | |
download | bcm5719-llvm-efadd781f4967bfaaff91b89eb8549995cde0bb2.tar.gz bcm5719-llvm-efadd781f4967bfaaff91b89eb8549995cde0bb2.zip |
Fix problem with perror
llvm-svn: 6659
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Support/Timer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Timer.cpp b/llvm/lib/Support/Timer.cpp index a013b46d12b..85114b57f2b 100644 --- a/llvm/lib/Support/Timer.cpp +++ b/llvm/lib/Support/Timer.cpp @@ -11,6 +11,7 @@ #include <sys/unistd.h> #include <unistd.h> #include <malloc.h> +#include <stdio.h> #include <iostream> #include <algorithm> #include <functional> |