From 6e328c6989641c61a4ea0cf6e82103494f503040 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Tue, 4 May 2004 17:52:33 +0000 Subject: [PATCH] Include config.h, not ../src/config.h. Include systime.h, not ../src/systime.h. --- lib-src/ChangeLog | 5 +++++ lib-src/profile.c | 14 ++++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 084787c4432..8a5f3bd5a4a 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,8 @@ +2004-05-04 Thien-Thi Nguyen + + * profile.c: Include config.h, not ../src/config.h. + Include systime.h, not ../src/systime.h. + 2003-03-18 Francesco Potort,Al(B * Version 21.3 released. diff --git a/lib-src/profile.c b/lib-src/profile.c index 3c76f8ed183..8c60042acac 100644 --- a/lib-src/profile.c +++ b/lib-src/profile.c @@ -30,9 +30,9 @@ Boston, MA 02111-1307, USA. */ ** abstraction : a stopwatch ** operations: reset_watch, get_time */ -#include <../src/config.h> +#include #include -#include <../src/systime.h> +#include static EMACS_TIME TV1, TV2; static int watch_not_started = 1; /* flag */ @@ -48,7 +48,7 @@ reset_watch () } /* This call returns the time since the last reset_watch call. The time - is returned as a string with the format . + is returned as a string with the format . If reset_watch was not called yet, exit. */ char * @@ -63,7 +63,7 @@ get_time () } #if ! defined (HAVE_GETTIMEOFDAY) && defined (HAVE_TIMEVAL) - + /* ARGSUSED */ gettimeofday (tp, tzp) struct timeval *tp; @@ -71,12 +71,12 @@ gettimeofday (tp, tzp) { 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 int @@ -102,3 +102,5 @@ main () } exit (1); } + +/* profile.c ends here */ -- 2.39.5