+2004-05-04 Thien-Thi Nguyen <ttn@gnu.org>
+
+ * profile.c: Include config.h, not ../src/config.h.
+ Include systime.h, not ../src/systime.h.
+
2003-03-18 Francesco Potort\e,Al\e(B <pot@gnu.org>
* Version 21.3 released.
** abstraction : a stopwatch
** operations: reset_watch, get_time
*/
-#include <../src/config.h>
+#include <config.h>
#include <stdio.h>
-#include <../src/systime.h>
+#include <systime.h>
static EMACS_TIME TV1, TV2;
static int watch_not_started = 1; /* flag */
}
/* This call returns the time since the last reset_watch call. The time
- is returned as a string with the format <seconds>.<micro-seconds>
+ is returned as a string with the format <seconds>.<micro-seconds>
If reset_watch was not called yet, exit. */
char *
}
#if ! defined (HAVE_GETTIMEOFDAY) && defined (HAVE_TIMEVAL)
-
+
/* ARGSUSED */
gettimeofday (tp, tzp)
struct timeval *tp;
{
extern long time ();
- tp->tv_sec = time ((long *)0);
+ tp->tv_sec = time ((long *)0);
tp->tv_usec = 0;
if (tzp != 0)
tzp->tz_minuteswest = -1;
}
-
+
#endif
\f
int
}
exit (1);
}
+
+/* profile.c ends here */