4.4BSD snapshot (revision 8.1); add 1993 to copyright
[unix-history] / usr / src / lib / libc / quad / lshrdi3.c
index 8a15aaf..9c9cb4e 100644 (file)
@@ -1,6 +1,6 @@
 /*-
 /*-
- * Copyright (c) 1992 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1992, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This software was developed by the Computer Systems Engineering group
  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
  *
  * This software was developed by the Computer Systems Engineering group
  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
@@ -10,7 +10,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)lshrdi3.c  5.5 (Berkeley) %G%";
+static char sccsid[] = "@(#)lshrdi3.c  8.1 (Berkeley) %G%";
 #endif /* LIBC_SCCS and not lint */
 
 #include "quad.h"
 #endif /* LIBC_SCCS and not lint */
 
 #include "quad.h"
@@ -18,8 +18,10 @@ static char sccsid[] = "@(#)lshrdi3.c        5.5 (Berkeley) %G%";
 /*
  * Shift an (unsigned) quad value right (logical shift right).
  */
 /*
  * Shift an (unsigned) quad value right (logical shift right).
  */
-quad
-__lshrdi3(quad a, u_quad shift)
+quad_t
+__lshrdi3(a, shift)
+       quad_t a;
+       qshift_t shift;
 {
        union uu aa;
 
 {
        union uu aa;