diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-11 07:18:02 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-11 07:18:02 +0000 |
commit | c66d8b0acada7363ff3e105d524bbc3e4a8c579e (patch) | |
tree | cd52e6ecea44d28bc6abfbe3d551a603ba7acf2e /projects | |
parent | 8abf69374e9c34068ddc970817738c0eb24ece2b (diff) |
Include <sys/types.h> to get the definition of int64_t on Solaris.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13456 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r-- | projects/Stacker/lib/runtime/stacker_rt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/Stacker/lib/runtime/stacker_rt.c b/projects/Stacker/lib/runtime/stacker_rt.c index 19ded7b4e1..4928bffc73 100644 --- a/projects/Stacker/lib/runtime/stacker_rt.c +++ b/projects/Stacker/lib/runtime/stacker_rt.c @@ -20,6 +20,7 @@ #include <ctype.h> #include <stdio.h> #include <stdlib.h> +#include <sys/types.h> extern int64_t _index_; extern int64_t _stack_[]; |