From: Marc Dionne Date: Sun, 3 Oct 2010 00:32:05 +0000 (-0400) Subject: Conditionalize include of string.h in rx_stats.c X-Git-Tag: upstream/1.8.0_pre1^2~4725 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=61b73864d74ac4d381c9d5d2712837426c84061d;p=packages%2Fo%2Fopenafs.git Conditionalize include of string.h in rx_stats.c Linux doesn't have , it's in the linux subdirectory. But it is already included by sysincludes.h, so it should not be needed here. Change-Id: I017c374e7b6d47e900ec73b40a36183a3f23f35c Reviewed-on: http://gerrit.openafs.org/2888 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/src/rx/rx_stats.c b/src/rx/rx_stats.c index a51a9725e..5c22ab6ca 100644 --- a/src/rx/rx_stats.c +++ b/src/rx/rx_stats.c @@ -31,7 +31,9 @@ #include #include +#if !defined(KERNEL) #include +#endif #include "rx.h" #include "rx_atomic.h"