diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-29 19:24:20 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-29 19:24:20 +0000 |
commit | 2f209c44525dde7b8e8b6fe8f0af6637d7f93407 (patch) | |
tree | 6f96b1fc50dae7b434dcbec526057e8c88532f34 /llvm/lib/System/Unix/Unix.h | |
parent | 3d7a614ec7963cd051739b7761fb7722e205ef24 (diff) | |
download | bcm5719-llvm-2f209c44525dde7b8e8b6fe8f0af6637d7f93407.tar.gz bcm5719-llvm-2f209c44525dde7b8e8b6fe8f0af6637d7f93407.zip |
Include some additional header files.
Fix the banner length.
llvm-svn: 16086
Diffstat (limited to 'llvm/lib/System/Unix/Unix.h')
-rw-r--r-- | llvm/lib/System/Unix/Unix.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/lib/System/Unix/Unix.h b/llvm/lib/System/Unix/Unix.h index 83d2865a11f..676cbb4fbd1 100644 --- a/llvm/lib/System/Unix/Unix.h +++ b/llvm/lib/System/Unix/Unix.h @@ -1,4 +1,4 @@ -//===- llvm/System/Unix/Unix.h - Common Unix Include File -----*- C++ -*-===// +//===- llvm/System/Unix/Unix.h - Common Unix Include File -------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -16,10 +16,12 @@ //=== is guaranteed to work on all UNIX variants. //===----------------------------------------------------------------------===// +#include "Config/config.h" // Get autoconf configuration settings #include <unistd.h> -#include <stdlib.h> -#include <string.h> -#include <errno.h> +#include <cstdlib> +#include <cstdio> +#include <cstring> +#include <cerrno> #include <sys/types.h> #include <sys/param.h> |