aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-01-10 19:12:09 +0000
committerChris Lattner <sabre@nondot.org>2004-01-10 19:12:09 +0000
commit335eb9d91211bede7f1092c06f68a5a05135a63c (patch)
treef0f06463c2668f2e6bcca2f2c763817f1ae1b0c2
parent9d51de1007724b56744d48e20157d84e2d83d8c5 (diff)
Remove wrappers around std c files
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10744 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/llee/ExecveHandler.c4
-rw-r--r--tools/llee/StorageProxy.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/llee/ExecveHandler.c b/tools/llee/ExecveHandler.c
index 922a154864..c7fad108f5 100644
--- a/tools/llee/ExecveHandler.c
+++ b/tools/llee/ExecveHandler.c
@@ -6,9 +6,9 @@
//===----------------------------------------------------------------------===//
#include "SysUtils.h"
-#include "Config/errno.h"
-#include "Config/stdlib.h"
#include "Config/unistd.h"
+#include <errno.h>
+#include <stdlib.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
diff --git a/tools/llee/StorageProxy.c b/tools/llee/StorageProxy.c
index 0562796ec2..656d3164cf 100644
--- a/tools/llee/StorageProxy.c
+++ b/tools/llee/StorageProxy.c
@@ -8,10 +8,10 @@
#include "OSInterface.h"
#include "SysUtils.h"
#include "Config/fcntl.h"
-#include "Config/stdlib.h"
#include "Config/unistd.h"
#include "Config/sys/types.h"
#include "Config/sys/stat.h"
+#include <stdlib.h>
#include <stdio.h>
#include <string.h>