diff options
-rw-r--r-- | tools/llee/ExecveHandler.c | 4 | ||||
-rw-r--r-- | tools/llee/StorageProxy.c | 2 |
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> |