diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-15 10:33:45 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-15 10:33:45 (GMT) |
commit | 8126a2234530d95d1d3854b50335b88478a6b824 (patch) | |
tree | 2d08a9dfdfe8304422eeb6801cd1b3d3b9607877 /src/tests | |
parent | cb40bb630ca469426962b4056750716cd43f478d (diff) |
Fix some more compiler warnings
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/md_openmp.c | 2 | ||||
-rw-r--r-- | src/tests/md_openmp_util.c | 2 | ||||
-rw-r--r-- | src/tests/tng_io_testing.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/md_openmp.c b/src/tests/md_openmp.c index 168092a..ff426c9 100644 --- a/src/tests/md_openmp.c +++ b/src/tests/md_openmp.c @@ -6,7 +6,7 @@ # include "tng_io.h" #include "tng_io_testing.h" -int main ( int argc, char *argv[] ); +int main (); void compute ( int np, int nd, double pos[], double vel[], double mass, double f[], double *pot, double *kin ); double dist ( int nd, double r1[], double r2[], double dr[] ); diff --git a/src/tests/md_openmp_util.c b/src/tests/md_openmp_util.c index d3504e4..815ca4f 100644 --- a/src/tests/md_openmp_util.c +++ b/src/tests/md_openmp_util.c @@ -6,7 +6,7 @@ # include "tng_io.h" #include "tng_io_testing.h" -int main ( int argc, char *argv[] ); +int main (); void compute ( int np, int nd, float pos[], float vel[], float mass, float f[], float *pot, float *kin ); float dist ( int nd, float r1[], float r2[], float dr[] ); diff --git a/src/tests/tng_io_testing.c b/src/tests/tng_io_testing.c index 61bdab0..5cd3461 100644 --- a/src/tests/tng_io_testing.c +++ b/src/tests/tng_io_testing.c @@ -706,4 +706,4 @@ int main() printf("Tests finished\n"); exit(0); -}
\ No newline at end of file +} |