[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/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/simulator:
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: (+2 -2)
memory.c | 2 +-
sym_tab.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/memory.c
diff -u llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/memory.c:1.1 llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/memory.c:1.2
--- llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/memory.c:1.1 Tue Oct 5 16:08:40 2004
+++ llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/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/simulator/sym_tab.c
diff -u llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/sym_tab.c:1.1 llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/sym_tab.c:1.2
--- llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/sym_tab.c:1.1 Tue Oct 5 16:08:40 2004
+++ llvm-test/MultiSource/Benchmarks/Prolangs-C/simulator/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