[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/load.c memory.c sym_tab.c

Jeff Cohen jeffc at jolt-lang.org
Mon Mar 7 08:41:25 PST 2005



Changes in directory llvm-test/MultiSource/Benchmarks/Prolangs-C/loader:

load.c updated: 1.1 -> 1.2
memory.c updated: 1.1 -> 1.2
sym_tab.c updated: 1.1 -> 1.2
---
Log message:

Fix compilation errors on FreeBSD.

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

 load.c    |    2 +-
 memory.c  |    2 +-
 sym_tab.c |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/load.c
diff -u llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/load.c:1.1 llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/load.c:1.2
--- llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/load.c:1.1	Tue Oct  5 16:11:49 2004
+++ llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/load.c	Mon Mar  7 10:41:13 2005
@@ -9,7 +9,7 @@
 /*                stringI.o print.o -g -lm                                   */
        
 #include <stdio.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <string.h>
 #include "constants.h"
 #include "sym_tab.h"


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/memory.c
diff -u llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/memory.c:1.1 llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/memory.c:1.2
--- llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/memory.c:1.1	Tue Oct  5 16:11:49 2004
+++ llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/memory.c	Mon Mar  7 10:41:13 2005
@@ -6,7 +6,7 @@
 /* machine.                                                                  */
 
 #include "boolean.h"
-#include <malloc.h>
+#include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
 #include "constants.h"


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/sym_tab.c
diff -u llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/sym_tab.c:1.1 llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/sym_tab.c:1.2
--- llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/sym_tab.c:1.1	Tue Oct  5 16:11:49 2004
+++ llvm-test/MultiSource/Benchmarks/Prolangs-C/loader/sym_tab.c	Mon Mar  7 10:41:13 2005
@@ -7,7 +7,7 @@
 #include "sym_tab.h"
 #include <string.h>
 #include <stdio.h>
-#include <malloc.h>
+#include <stdlib.h>
 
 /* -------------------------------- INIT_SYM_TAB --------------------------- */
 /* Initialize the symbol table TABLE.                                        */






More information about the llvm-commits mailing list