lib/DtHelp: Include <stdio.h> to prevent warnings about implicit declartion of free()
authorPeter Howkins <flibble@users.sf.net>
Wed, 22 Aug 2012 11:10:10 +0000 (12:10 +0100)
committerPeter Howkins <flibble@users.sf.net>
Wed, 22 Aug 2012 11:10:10 +0000 (12:10 +0100)
19 files changed:
cde/lib/DtHelp/il/ilX.c
cde/lib/DtHelp/il/ilcodec.c
cde/lib/DtHelp/il/ilcontext.c
cde/lib/DtHelp/il/ildecompg3.c
cde/lib/DtHelp/il/ildecompg4.c
cde/lib/DtHelp/il/ildecomplzw.c
cde/lib/DtHelp/il/ildither.c
cde/lib/DtHelp/il/ilgraybi.c
cde/lib/DtHelp/il/ilimage.c
cde/lib/DtHelp/il/iljpgdecode.c
cde/lib/DtHelp/il/iljpgdecodejif.c
cde/lib/DtHelp/il/iljpgdedct.c
cde/lib/DtHelp/il/iljpgdehuff.c
cde/lib/DtHelp/il/ilobject.c
cde/lib/DtHelp/il/ilpipe.c
cde/lib/DtHelp/il/iltiff.c
cde/lib/DtHelp/il/iltiffread.c
cde/lib/DtHelp/il/ilutiljpeg.c
cde/lib/DtHelp/il/ilycbcr.c

index 15cbe53b9f119d99704cd10e73a57a75ba470a42..79cf4ffdaf3e8b63ad24af5ab5e6c5330666b663 100644 (file)
@@ -41,6 +41,7 @@
 #include "ilcontext.h"
 #include "ilX.h"
 #include <math.h>
+#include <stdlib.h>
 #include <X11/Xutil.h>
 #include "ilpipelem.h"
 #include "ilerrors.h"
index f08cb86bd26e75a7aa8fb0deac61ddde2cb21359..992ec50e413d4c15617e6e5060b5c13a4f547ea7 100644 (file)
@@ -37,6 +37,8 @@
 ***
 ***-------------------------------------------------------------------*/
 
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilpipelem.h"
 #include "ilpipeint.h"
index e69445fb67b942649ced0c12d91d27f5e689928e..978acc33e50520b9518dff134317fdbc3f195b5b 100644 (file)
@@ -40,6 +40,8 @@
         /*  ilcontext.c - Contains ilCreate/DestroyContext() and related code.
         */
 
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilcontext.h"
 #include "ilerrors.h"
index c0c9c1968fc7918e8d344c0c5e230ea0d721f917..8ab2b5b211bf89141865bbbad7313e9897f7baa5 100644 (file)
@@ -40,6 +40,7 @@
 
 #include <math.h>
 #include <stdio.h>       
+#include <stdlib.h>
 
 #include "ilint.h"
 #include "ilpipelem.h"
index 1938fd06c35756623714414efabfc0ed64669dbd..8876de8d470a69af8648f20047a9e71795276956 100644 (file)
@@ -40,6 +40,7 @@
 
 #include <math.h>
 #include <stdio.h>       
+#include <stdlib.h>
 
 #include "ilint.h"
 #include "ilpipelem.h"
index 83a84f80f35c69745b42f4daf0d9155454efddb9..8f3eb0f196820ac674d9ccc00c609ad928fdaa60 100644 (file)
@@ -37,6 +37,8 @@
 ***
 ***-------------------------------------------------------------------*/
 
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilpipelem.h"
 #include "ildecomp.h"
index a1cb444487876210bbfe380378ed090894c46504..46ba1e73ffc02f58754000054801658f96756ca9 100644 (file)
@@ -42,6 +42,8 @@
         code (from John Francis) for converting by finding the best "n" colors.
     */
 
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilpipelem.h"
 #include "ilconvert.h"
index 0515114e0254a4d9b96017c6f19fdee45f422d05..fc3de705259b3b79c78a15071aa7c2d1748b5735 100644 (file)
@@ -37,6 +37,8 @@
 ***
 ***-------------------------------------------------------------------*/
 
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilpipelem.h"
 #include "ilconvert.h"
index 01f38b5e20c2990d8b495681362ead25df1a11ac..c74a63ea4f61ef66caa9fd55b8d9e8c00cac73dd 100644 (file)
@@ -40,6 +40,8 @@
         /*  /ilc/ilimage.c : General image handling code.
         */
 
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilpipelem.h"
 #include "ilimage.h"
index 1373c7e88149ed14ade13ca2a5734b664a021a4c..4e3ee945838dd2e0885ae3e027cb15aaf6599551 100644 (file)
@@ -37,6 +37,8 @@
 ***
 ***-------------------------------------------------------------------*/
 
+#include <stdlib.h>
+
 #include "iljpgdecodeint.h"
 
 
index 2b4f404565731c22b0c507284cf5077565e7ca5a..51c796d92b099b4ce174ff46a3a01b7f2405af98 100644 (file)
@@ -37,6 +37,8 @@
 ***
 ***-------------------------------------------------------------------*/
 
+#include <stdlib.h>
+
 #include "iljpgdecodeint.h"
 
 
index 697ad3bec4b09657243e4e0a11a6ea3021d39119..6d7df3e0efd1c20cafa5732ff1b4dcf822a2bbca 100644 (file)
@@ -39,6 +39,7 @@
 
 #include "iljpgdecodeint.h"
 #include <math.h>
+#include <stdlib.h>
 
     /*  Macros to check if "clipValue" (an int) is  outside range 0..255, and
         to branch to point named by second macro if so, which clips and returns.
index 9c90bd84e65aa0a13e6d7e1c2b6576e26c180e73..1324cd48e9e4ae48c6288d8873f520e21a4837df 100644 (file)
@@ -37,6 +37,8 @@
 ***
 ***-------------------------------------------------------------------*/
 
+#include <stdlib.h>
+
 #include "iljpgdecodeint.h"
 
 /*
index 54e354cc53e9d518eb4cc096778c15c838348284..96f790ee8b844e8622939e9cdf604284887c0abc 100644 (file)
@@ -40,6 +40,8 @@
         /*  /ilc/ilobject.c : General object handling code, e.g. ilDestroyObject().
         */
 
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilcontext.h"
 #include "ilerrors.h"
index f96d82484a818b4b76a3cb952bc823946a274f48..19a9ab517f3ebb241f0a5e20146cfcf16971f468 100644 (file)
@@ -42,6 +42,8 @@
             implementation of pipes.
         */
 
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilimage.h"
 #include "ilpipelem.h"
index a4474424f279cf50ca79e30c7596be7590909913..ddd4a53898b3b994180a51a0748ee08beb21bc72 100644 (file)
@@ -41,6 +41,8 @@
         those exposed in /ilc/iltiffint.h to other /ilc/iltiff*.c code.
     */
 
+#include <stdlib.h>
+
 #include "iltiffint.h"
 #include "ilerrors.h"
 
index a53fa51978006d62396aadb998e1e08b97e02cf1..e5e57008c88481320a8485a78b7bbf7bb19962cb 100644 (file)
@@ -41,6 +41,8 @@
         to read from a TIFF file.  See also /ilc/iltiff.c and /ilc/iltiffwrite.c .
     */
 
+#include <stdlib.h>
+
 #include "iltiffint.h"
 #include "ilpipelem.h"
 #include "ilcodec.h"
index b506b3ca199f8474740c616d8300edf21f1742d8..dafa85b261a5109a5e89ad5b9e258fbb463569e3 100644 (file)
@@ -37,6 +37,8 @@
 ***
 ***-------------------------------------------------------------------*/
 
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilerrors.h"
 #include "iljpgdecode.h"
index 588640a7ed3007973fa5b94b5405963467b8274c..f940918c67a58ca4a44e21fb0a4016181e10cc21 100644 (file)
@@ -40,6 +40,8 @@
         /*  /ilc/ilycbcr.c : Code for handling IL_YCBCR images, including
             conversions to/from RGB, and subsampling - upsampling is in /ilc/ilupsample.c
         */
+#include <stdlib.h>
+
 #include "ilint.h"
 #include "ilpipelem.h"
 #include "ilconvert.h"