Include some additional header files.

Fix the banner length.

llvm-svn: 16086
This commit is contained in:
Reid Spencer 2004-08-29 19:24:20 +00:00
parent 3d7a614ec7
commit 2f209c4452
1 changed files with 6 additions and 4 deletions

View File

@ -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>