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 | c3de9524268cfcd2d04fbf464d3b1dafc20f3e7c (patch) | |
tree | db645c3b1c974a9a4b5486a8eaaa90be24820b8c /lib/System/Unix | |
parent | 496c277a6d161413e3f6976c9991ddccd8ecae8a (diff) |
Include some additional header files.
Fix the banner length.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16086 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix')
-rw-r--r-- | lib/System/Unix/Unix.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/System/Unix/Unix.h b/lib/System/Unix/Unix.h index 83d2865a11..676cbb4fbd 100644 --- a/lib/System/Unix/Unix.h +++ b/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> |