From 217d9c2a09e448cc192bf6b44d7181c1fc5df488 Mon Sep 17 00:00:00 2001 From: apb Date: Sat, 16 Jul 2011 22:41:59 +0000 Subject: [PATCH] Reinstate #include which was incorrectly removed in the previous commit. --- sys/dev/dtv/dtv_math.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/dev/dtv/dtv_math.c b/sys/dev/dtv/dtv_math.c index 4165df47871f..267be710df94 100644 --- a/sys/dev/dtv/dtv_math.c +++ b/sys/dev/dtv/dtv_math.c @@ -1,4 +1,4 @@ -/* $NetBSD: dtv_math.c,v 1.3 2011/07/16 22:30:26 apb Exp $ */ +/* $NetBSD: dtv_math.c,v 1.4 2011/07/16 22:41:59 apb Exp $ */ /*- * Copyright (c) 2011 Alan Barrett @@ -27,11 +27,13 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: dtv_math.c,v 1.3 2011/07/16 22:30:26 apb Exp $"); +__KERNEL_RCSID(0, "$NetBSD: dtv_math.c,v 1.4 2011/07/16 22:41:59 apb Exp $"); #include #include +#include + /* * dtv_intlog10 -- return an approximation to log10(x) * 1<<24, * using integer arithmetic.