]> git.eshelyaron.com Git - emacs.git/commitdiff
Include config.h, not ../src/config.h.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Tue, 4 May 2004 17:52:33 +0000 (17:52 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Tue, 4 May 2004 17:52:33 +0000 (17:52 +0000)
Include systime.h, not ../src/systime.h.

lib-src/ChangeLog
lib-src/profile.c

index 084787c443222b598f84c17eba3e50a4e67a406c..8a5f3bd5a4acec79da491a09aa8ad70397f11425 100644 (file)
@@ -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.
+
 2003-03-18  Francesco Potort\e,Al\e(B  <pot@gnu.org>
 
        * Version 21.3 released.
index 3c76f8ed18389ee87b137e00d1775a2d7a3235bc..8c60042acaccaabc1f1423ee69dcaba220f0ddc2 100644 (file)
@@ -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
 \f
 int
@@ -102,3 +102,5 @@ main ()
     }
   exit (1);
 }
+
+/* profile.c ends here */