]> git.eshelyaron.com Git - emacs.git/commitdiff
(gettimeofday): New function, defined if necessary.
authorRichard M. Stallman <rms@gnu.org>
Sun, 30 Jul 1995 07:07:39 +0000 (07:07 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 30 Jul 1995 07:07:39 +0000 (07:07 +0000)
lib-src/profile.c

index d0c4b93a0d5b6629295aa66bcc85ec55f7189b95..7f2b416ee4b740f3badf73a2ead0d09a2b13bba6 100644 (file)
@@ -61,6 +61,23 @@ get_time ()
   return time_string;
 }
 
+#if ! defined (HAVE_GETTIMEOFDAY) && defined (HAVE_TIMEVAL)
+/* ARGSUSED */
+gettimeofday (tp, tzp)
+     struct timeval *tp;
+     struct timezone *tzp;
+{
+  extern long time ();
+
+  tp->tv_sec = time ((long *)0);    
+  tp->tv_usec = 0;
+  if (tzp != 0)
+    tzp->tz_minuteswest = -1;
+}
+#endif
+\f
 void
 main ()
 {