From 96b2a9d4002ce85dcbaf1655ee1533150a667e59 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sun, 3 Sep 2000 06:04:16 +0000 Subject: [PATCH] libkern.h now internally uses the bzero() definition from sys/systm.h. This is kinda important since the bzero symbol on i386 is not a function but a function pointer.. If memset() tried to call it as though it were a function, things would be less than satisfactory. In reality though this was not an actual problem and just caused compile warnings. --- sys/sys/libkern.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/sys/libkern.h b/sys/sys/libkern.h index e9841d5417fb..1e106a97cd0f 100644 --- a/sys/sys/libkern.h +++ b/sys/sys/libkern.h @@ -39,6 +39,7 @@ #include #include +#include /* BCD conversions. */ extern u_char const bcd2bin_data[];