diff options
author | obrien <obrien@FreeBSD.org> | 2003-08-25 23:30:41 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-08-25 23:30:41 +0000 |
commit | 062c960d1b04a152d25f70b6ffd694e399527b71 (patch) | |
tree | 673bd41f7fbdfc0c93256fed4d34fdac5c781a8f /sys/boot/common/bcache.c | |
parent | 2b8c9f2e6471f0888841400bc2ae7c059372cc6e (diff) | |
download | FreeBSD-src-062c960d1b04a152d25f70b6ffd694e399527b71.zip FreeBSD-src-062c960d1b04a152d25f70b6ffd694e399527b71.tar.gz |
Use __FBSDID().
Also some minor style cleanups.
Diffstat (limited to 'sys/boot/common/bcache.c')
-rw-r--r-- | sys/boot/common/bcache.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/boot/common/bcache.c b/sys/boot/common/bcache.c index fb8de49..d61fbf0 100644 --- a/sys/boot/common/bcache.c +++ b/sys/boot/common/bcache.c @@ -22,10 +22,11 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* * Simple LRU block cache */ |