From: malaterre Date: Fri, 17 Jun 2005 13:45:27 +0000 (+0000) Subject: COMP: fix waring on icc81 X-Git-Tag: Version1.2.bp~479 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=0e573b14936410663e6cfe88714f35b383dc3ab9;p=gdcm.git COMP: fix waring on icc81 --- diff --git a/src/gdcmjpegls/Decoder/bitio.c b/src/gdcmjpegls/Decoder/bitio.c index 6309f20a..f8f2a4a7 100644 --- a/src/gdcmjpegls/Decoder/bitio.c +++ b/src/gdcmjpegls/Decoder/bitio.c @@ -54,9 +54,9 @@ #include /* for memset */ -extern int zeroLUT[]; /* lookup table to find number of leading zeroes */ +int zeroLUT[]; /* lookup table to find number of leading zeroes */ -extern FILE *in, *out; +FILE *in, *out; byte negbuff[BUFSIZE+4]; /* byte I/O buffer, allowing for 4 "negative" locations */