From aab719f0900e3d32df34acaed0c9e9c7edc91e6f Mon Sep 17 00:00:00 2001 From: Benno Rice Date: Fri, 12 Jan 2001 07:28:46 +0000 Subject: Convert all instances of: #include "quad.h" to: #include as the former breaks under a kernel build. This change had already been performed on the files that were used in other kernel builds, however the PowerPC kernel build seems to require some that weren't being used. Reviewed by: obrien, peter --- sys/libkern/adddi3.c | 2 +- sys/libkern/anddi3.c | 2 +- sys/libkern/ashldi3.c | 2 +- sys/libkern/ashrdi3.c | 2 +- sys/libkern/iordi3.c | 2 +- sys/libkern/lshldi3.c | 2 +- sys/libkern/lshrdi3.c | 2 +- sys/libkern/muldi3.c | 2 +- sys/libkern/negdi2.c | 2 +- sys/libkern/notdi2.c | 2 +- sys/libkern/subdi3.c | 2 +- sys/libkern/xordi3.c | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) (limited to 'sys') diff --git a/sys/libkern/adddi3.c b/sys/libkern/adddi3.c index 51793da73f708..094957996c2d8 100644 --- a/sys/libkern/adddi3.c +++ b/sys/libkern/adddi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Add two quads. This is trivial since a one-bit carry from a single diff --git a/sys/libkern/anddi3.c b/sys/libkern/anddi3.c index d278a3619463f..4a818e1c7551d 100644 --- a/sys/libkern/anddi3.c +++ b/sys/libkern/anddi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Return a & b, in quad. diff --git a/sys/libkern/ashldi3.c b/sys/libkern/ashldi3.c index 4e8e8d6441b32..08276529ba8b5 100644 --- a/sys/libkern/ashldi3.c +++ b/sys/libkern/ashldi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Shift a (signed) quad value left (arithmetic shift left). diff --git a/sys/libkern/ashrdi3.c b/sys/libkern/ashrdi3.c index 031fcc0523b4a..68e430336ca93 100644 --- a/sys/libkern/ashrdi3.c +++ b/sys/libkern/ashrdi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Shift a (signed) quad value right (arithmetic shift right). diff --git a/sys/libkern/iordi3.c b/sys/libkern/iordi3.c index 8477ac24ea8b4..9b9fd68efe7bf 100644 --- a/sys/libkern/iordi3.c +++ b/sys/libkern/iordi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Return a | b, in quad. diff --git a/sys/libkern/lshldi3.c b/sys/libkern/lshldi3.c index 5d20c1d233cf1..e9dd9aea6bdac 100644 --- a/sys/libkern/lshldi3.c +++ b/sys/libkern/lshldi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Shift an (unsigned) quad value left (logical shift left). diff --git a/sys/libkern/lshrdi3.c b/sys/libkern/lshrdi3.c index 6cce84eb658d7..32db7c3d27f3b 100644 --- a/sys/libkern/lshrdi3.c +++ b/sys/libkern/lshrdi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Shift an (unsigned) quad value right (logical shift right). diff --git a/sys/libkern/muldi3.c b/sys/libkern/muldi3.c index f17a2474dbdbd..922f742b3e4ff 100644 --- a/sys/libkern/muldi3.c +++ b/sys/libkern/muldi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Multiply two quads. diff --git a/sys/libkern/negdi2.c b/sys/libkern/negdi2.c index a803bf40e8f71..9d31a3c348480 100644 --- a/sys/libkern/negdi2.c +++ b/sys/libkern/negdi2.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Return -a (or, equivalently, 0 - a), in quad. See subdi3.c. diff --git a/sys/libkern/notdi2.c b/sys/libkern/notdi2.c index 0a1e97e9e4eb3..8c9d18ea835a3 100644 --- a/sys/libkern/notdi2.c +++ b/sys/libkern/notdi2.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Return ~a. For some reason gcc calls this `one's complement' rather diff --git a/sys/libkern/subdi3.c b/sys/libkern/subdi3.c index 9f34e6b4e370c..6775485009fb0 100644 --- a/sys/libkern/subdi3.c +++ b/sys/libkern/subdi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Subtract two quad values. This is trivial since a one-bit carry diff --git a/sys/libkern/xordi3.c b/sys/libkern/xordi3.c index b666446f049e4..1452d595ed11c 100644 --- a/sys/libkern/xordi3.c +++ b/sys/libkern/xordi3.c @@ -37,7 +37,7 @@ * $FreeBSD$ */ -#include "quad.h" +#include /* * Return a ^ b, in quad. -- cgit v1.3