diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-10 19:15:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-10 19:15:38 +0000 |
commit | e275fe834aefebc1b0e53c02c8915805b301379d (patch) | |
tree | 7f3a9b9b0006775f71b97bd5329dcac3172c31bb /tools/llee | |
parent | 74b1f45293b45737bf0f18cf3a1a078ff1bfabdb (diff) | |
download | external_llvm-e275fe834aefebc1b0e53c02c8915805b301379d.zip external_llvm-e275fe834aefebc1b0e53c02c8915805b301379d.tar.gz external_llvm-e275fe834aefebc1b0e53c02c8915805b301379d.tar.bz2 |
Remove standard C header wrappers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llee')
-rw-r--r-- | tools/llee/SysUtils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llee/SysUtils.c b/tools/llee/SysUtils.c index 6d6dc50..2ec6148 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> |