summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2004-05-04 17:48:14 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2004-05-04 17:48:14 +0000
commit80eea3f820b5eab9c131d7c90f7628b902b477d1 (patch)
tree5561d0127251383676a0c162d4699f0c146e62bf
parent8b0d979c61568403a0d01b820c6cdb57acfda1ef (diff)
downloademacs-80eea3f820b5eab9c131d7c90f7628b902b477d1.tar.gz
Include config.h, not ../src/config.h.
Include systime.h, not ../src/systime.h.
-rw-r--r--lib-src/ChangeLog5
-rw-r--r--lib-src/profile.c14
2 files changed, 13 insertions, 6 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index be691be8ede..f6b65f38df6 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
+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.
+
2002-03-16 Eli Zaretskii <eliz@is.elta.co.il>
* Version 21.2 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 <config.h>
#include <stdio.h>
-#include <../src/systime.h>
+#include <systime.h>
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 <seconds>.<micro-seconds>
+ is returned as a string with the format <seconds>.<micro-seconds>
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 */