diff options
author | Colin Schmidt <colins@eecs.berkeley.edu> | 2016-02-26 22:00:31 -0800 |
---|---|---|
committer | Colin Schmidt <colins@eecs.berkeley.edu> | 2016-02-27 12:04:47 -0800 |
commit | 240a4b23e0791283fbae34ced137ce644ac140b5 (patch) | |
tree | c0b2aec2f399066e23ea62150d6ad7dc07a28b59 | |
parent | b75c550fda837f41d606d8f0b6e6794d9ef30c41 (diff) | |
download | riscv-tests-240a4b23e0791283fbae34ced137ce644ac140b5.zip riscv-tests-240a4b23e0791283fbae34ced137ce644ac140b5.tar.gz riscv-tests-240a4b23e0791283fbae34ced137ce644ac140b5.tar.bz2 |
remove malloc declaration from dhrystone
it was unused and causing issues when building
with the linux toolchain
-rw-r--r-- | benchmarks/dhrystone/dhrystone_main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/benchmarks/dhrystone/dhrystone_main.c b/benchmarks/dhrystone/dhrystone_main.c index f2cd58e..492270a 100644 --- a/benchmarks/dhrystone/dhrystone_main.c +++ b/benchmarks/dhrystone/dhrystone_main.c @@ -60,7 +60,6 @@ char Ch_1_Glob, int Arr_1_Glob [50]; int Arr_2_Glob [50] [50]; -extern char *malloc (); Enumeration Func_1 (); /* forward declaration necessary since Enumeration may not simply be int */ |