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 | 940c2a83066402b8c4245465fe6cadb265b9fc67 (patch) | |
| tree | 4eb8b8a5d5b676f1604f322aed954191b706cf51 | |
| parent | 24f200ad7b3aed95ddcfc7eec6cdfacb17032af4 (diff) | |
| download | bcm5719-llvm-940c2a83066402b8c4245465fe6cadb265b9fc67.tar.gz bcm5719-llvm-940c2a83066402b8c4245465fe6cadb265b9fc67.zip | |
Include <sys/types.h> to get the definition of int64_t on Solaris.
llvm-svn: 13456
| -rw-r--r-- | llvm/projects/Stacker/lib/runtime/stacker_rt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/projects/Stacker/lib/runtime/stacker_rt.c b/llvm/projects/Stacker/lib/runtime/stacker_rt.c index 19ded7b4e14..4928bffc73f 100644 --- a/llvm/projects/Stacker/lib/runtime/stacker_rt.c +++ b/llvm/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_[]; |

