[llvm-commits] CVS: llvm/tools/llee/ExecveHandler.c StorageProxy.c

Chris Lattner lattner at cs.uiuc.edu
Sat Jan 10 13:13:14 PST 2004


Changes in directory llvm/tools/llee:

ExecveHandler.c updated: 1.6 -> 1.7
StorageProxy.c updated: 1.1 -> 1.2

---
Log message:

Remove wrappers around std c files



---
Diffs of the changes:  (+3 -3)

Index: llvm/tools/llee/ExecveHandler.c
diff -u llvm/tools/llee/ExecveHandler.c:1.6 llvm/tools/llee/ExecveHandler.c:1.7
--- llvm/tools/llee/ExecveHandler.c:1.6	Tue Nov 11 12:38:56 2003
+++ llvm/tools/llee/ExecveHandler.c	Sat Jan 10 13:12:09 2004
@@ -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>


Index: llvm/tools/llee/StorageProxy.c
diff -u llvm/tools/llee/StorageProxy.c:1.1 llvm/tools/llee/StorageProxy.c:1.2
--- llvm/tools/llee/StorageProxy.c:1.1	Mon Sep 29 17:37:00 2003
+++ llvm/tools/llee/StorageProxy.c	Sat Jan 10 13:12:09 2004
@@ -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>
 





More information about the llvm-commits mailing list