diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-11-27 15:19:50 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-11-27 15:19:50 (GMT) |
commit | fc344fa4e593ae5ca82693fd02213fecb8dce953 (patch) | |
tree | f39fe7d27a32d005629700a912399e5c966dbb8c /src/tests/md_openmp_util.c | |
parent | 28edd851f8b7675fdadb51ebf906ae9cf8494dc8 (diff) |
Removed generated include files defining dirs of example files.
Diffstat (limited to 'src/tests/md_openmp_util.c')
-rw-r--r-- | src/tests/md_openmp_util.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tests/md_openmp_util.c b/src/tests/md_openmp_util.c index e883c65..006d292 100644 --- a/src/tests/md_openmp_util.c +++ b/src/tests/md_openmp_util.c @@ -6,7 +6,6 @@ # include <math.h> # include <omp.h> # include "tng_io.h" -#include "tng_io_testing.h" int main (); void compute ( int np, int nd, float pos[], float vel[], @@ -121,8 +120,8 @@ int main () printf("\n"); printf(" Initializing trajectory storage.\n"); /* Initialize the TNG trajectory */ -#ifdef EXAMPLE_FILES_DIR - tng_util_trajectory_open(EXAMPLE_FILES_DIR "tng_md_out.tng", 'w', &traj); +#ifdef TNG_EXAMPLE_FILES_DIR + tng_util_trajectory_open(TNG_EXAMPLE_FILES_DIR "tng_md_out.tng", 'w', &traj); #else tng_util_trajectory_open("/tmp/tng_md_out.tng", 'w', &traj); #endif |