KNF, integrate with standard include files (quad -> quad_t etc.)
[unix-history] / usr / src / lib / libc / quad / adddi3.c
index 5d0412d..a4bf078 100644 (file)
@@ -10,7 +10,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)adddi3.c   5.4 (Berkeley) %G%";
+static char sccsid[] = "@(#)adddi3.c   5.5 (Berkeley) %G%";
 #endif /* LIBC_SCCS and not lint */
 
 #include "quad.h"
 #endif /* LIBC_SCCS and not lint */
 
 #include "quad.h"
@@ -20,8 +20,9 @@ static char sccsid[] = "@(#)adddi3.c  5.4 (Berkeley) %G%";
  * u_long addition x+y occurs if and only if the sum x+y is less than
  * either x or y (the choice to compare with x or y is arbitrary).
  */
  * u_long addition x+y occurs if and only if the sum x+y is less than
  * either x or y (the choice to compare with x or y is arbitrary).
  */
-quad
-__adddi3(quad a, quad b)
+quad_t
+__adddi3(a, b)
+       quad_t a, b;
 {
        union uu aa, bb, sum;
 
 {
        union uu aa, bb, sum;