summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-01-10 19:15:38 +0000
committerChris Lattner <sabre@nondot.org>2004-01-10 19:15:38 +0000
commite275fe834aefebc1b0e53c02c8915805b301379d (patch)
tree7f3a9b9b0006775f71b97bd5329dcac3172c31bb
parent74b1f45293b45737bf0f18cf3a1a078ff1bfabdb (diff)
downloadllvm-e275fe834aefebc1b0e53c02c8915805b301379d.tar.gz
llvm-e275fe834aefebc1b0e53c02c8915805b301379d.tar.bz2
llvm-e275fe834aefebc1b0e53c02c8915805b301379d.tar.xz
Remove standard C header wrappers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10748 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/llee/SysUtils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llee/SysUtils.c b/tools/llee/SysUtils.c
index 6d6dc50a6a..2ec6148a66 100644
--- a/tools/llee/SysUtils.c
+++ b/tools/llee/SysUtils.c
@@ -7,12 +7,12 @@
#include "SysUtils.h"
#include "Config/dlfcn.h"
-#include "Config/errno.h"
#include "Config/fcntl.h"
#include "Config/unistd.h"
#include "Config/sys/stat.h"
#include "Config/sys/types.h"
#include "Config/sys/wait.h"
+#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>