]> git.eshelyaron.com Git - emacs.git/commitdiff
(time): Declare it only if not HAVE_UNISTD_H.
authorRichard M. Stallman <rms@gnu.org>
Thu, 16 Apr 1998 06:21:56 +0000 (06:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 16 Apr 1998 06:21:56 +0000 (06:21 +0000)
src/fns.c

index 507811553ff4e447d5a995cf8ba1c415636d7fb6..5d5f3fc12d6313dcbf43fc85d405d67c280e13e3 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -60,6 +60,13 @@ Lisp_Object Qcursor_in_echo_area;
 Lisp_Object Qwidget_type;
 
 static int internal_equal ();
+
+extern long get_random ();
+extern void seed_random ();
+
+#ifndef HAVE_UNISTD_H
+extern long time ();
+#endif
 \f
 DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0,
   "Return the argument unchanged.")
@@ -69,10 +76,6 @@ DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0,
   return arg;
 }
 
-extern long get_random ();
-extern void seed_random ();
-extern long time ();
-
 DEFUN ("random", Frandom, Srandom, 0, 1, 0,
   "Return a pseudo-random number.\n\
 All integers representable in Lisp are equally likely.\n\