Include some additional header files.
authorReid Spencer <rspencer@reidspencer.com>
Sun, 29 Aug 2004 19:24:20 +0000 (19:24 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 29 Aug 2004 19:24:20 +0000 (19:24 +0000)
Fix the banner length.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16086 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Unix/Unix.h

index 83d2865a11f42bbcb7b98da8e5c6ac890bc388d2..676cbb4fbd15b9bc118e3b85061fcf5a03ff7c36 100644 (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
 //
 //===          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>