aboutsummaryrefslogtreecommitdiffstats
path: root/compute_ref.c
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@st.com>2011-07-19 16:32:40 +0200
committerChristophe Lyon <christophe.lyon@st.com>2011-07-19 16:32:40 +0200
commit74dd60f36c906ab718429d0d0e7c98670ad120f6 (patch)
treecd75f068964093d01ce24449f2c095a8092a85ce /compute_ref.c
parentf3c80a50bd8b39a0a6d565448a0b1c921a902eb8 (diff)
downloadplatform_external_arm-neon-tests-74dd60f36c906ab718429d0d0e7c98670ad120f6.tar.gz
platform_external_arm-neon-tests-74dd60f36c906ab718429d0d0e7c98670ad120f6.tar.bz2
platform_external_arm-neon-tests-74dd60f36c906ab718429d0d0e7c98670ad120f6.zip
Merge from SVN #533
[CL] fix prototypes to avoid MSVC warning
Diffstat (limited to 'compute_ref.c')
-rw-r--r--compute_ref.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compute_ref.c b/compute_ref.c
index f270192..def1203 100644
--- a/compute_ref.c
+++ b/compute_ref.c
@@ -36,7 +36,7 @@ FILE* ref_file = NULL;
#define LOGFILE "stm-arm-neon-ref.log"
-void cleanup ()
+void cleanup (void)
{
if (log_file) fclose (log_file);
if (ref_file) fclose (ref_file);
@@ -184,7 +184,7 @@ extern void exec_vrsqrts(void);
extern void exec_dsp(void); /* DSP (non-NEON) intrinsics */
extern void exec_dspfns(void); /* DSP FNS (non-NEON/ITU) intrinsics */
-int main ()
+int main (void)
{
log_file = fopen (LOGFILE, "w");
if (log_file == NULL) {