From 61d596a8ff529277d32f6a0571227b06856052ab Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Thu, 28 Apr 2005 05:50:18 +0000 Subject: [PATCH] Update comment to direct the reader to libkern.h instead of systm.h. The functions were moved. Pointed out by: johan@ --- sys/libkern/crc32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/libkern/crc32.c b/sys/libkern/crc32.c index 4c937d29a568..2bfc11efbe57 100644 --- a/sys/libkern/crc32.c +++ b/sys/libkern/crc32.c @@ -98,7 +98,7 @@ uint32_t crc32_tab[] = { * A function that calculates the CRC-32 based on the table above is * given below for documentation purposes. An equivalent implementation * of this function that's actually used in the kernel can be found - * in sys/systm.h, where it can be inlined. + * in sys/libkern.h, where it can be inlined. * * uint32_t * crc32(const void *buf, size_t size)