changeset 39661:cbfae3e04e1c

Include config.h, not ../src/config.h and systime.h, not ../src/systime.h.
author Pavel Janík <Pavel@Janik.cz>
date Mon, 08 Oct 2001 04:52:12 +0000
parents 10de1d7b2bb3
children 1b32afc81cf2
files lib-src/ChangeLog lib-src/profile.c
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/ChangeLog	Mon Oct 08 00:19:58 2001 +0000
+++ b/lib-src/ChangeLog	Mon Oct 08 04:52:12 2001 +0000
@@ -1,3 +1,8 @@
+2001-10-07  Pavel Jan,Bm(Bk  <Pavel@Janik.cz>
+
+	* profile.c: Include config.h, not ../src/config.h.
+	Include systime.h, not ../src/systime.h.
+
 2001-10-01  Alexander Zhuckov  <zuav@int.spb.ru>
 
 	* ebrowse.c (struct alias): Add two new struct members: NAMESP and
--- a/lib-src/profile.c	Mon Oct 08 00:19:58 2001 +0000
+++ b/lib-src/profile.c	Mon Oct 08 04:52:12 2001 +0000
@@ -30,9 +30,9 @@
  **  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 */