(i) Move the
#include <sys/time.h>
from autlib1.c to auto_c.h, so that struct timeval is
defined before being used in the arguments to
time_start and time_end.
(ii) In tek2ps.c, please add
return 0;
at the end of main; otherwise, tek2ps returns a random
value to the calling process; I used tek2ps in a
makefile and 'make' aborted prematurely because the
exit code of tek2ps was not zero. Change the hard coded
path to auto/97/... in tek2ps.c or have this taken care
of in GNU 'configure'.
(iii) In fcon.c, change the huge arrays 'ups' and 'vps'
to 'static doublereal', so that a huge stack will not
be needed.
(iv) In fcon.h, change NTSTX to something smaller, so
that the program will not need much more memory to
execute than that needed to run the samples.
Logged In: YES
user_id=176505
#i, partial ii, iii, and iv are fixed in 0.9.8.
#ii doesn't have the return 0 fix, sorry I missed it.