]> Creatis software - gdcm.git/blobdiff - src/jpeg/libijg/jmemnobs.c
ENH: ok making too many mistakes time to go to bed
[gdcm.git] / src / jpeg / libijg / jmemnobs.c
index eb8c337725fd85f289b04eebbea8549d90d53c77..6757d4b3c21960e809b6c4c1b420c71a4c81363d 100644 (file)
@@ -18,9 +18,9 @@
 #define JPEG_INTERNALS
 #include "jinclude.h"
 #include "jpeglib.h"
-#include "jmemsys.h"           /* import the system-dependent declarations */
+#include "jmemsys.h"    /* import the system-dependent declarations */
 
-#ifndef HAVE_STDLIB_H          /* <stdlib.h> should declare malloc(),free() */
+#ifndef HAVE_STDLIB_H    /* <stdlib.h> should declare malloc(),free() */
 extern void * malloc JPP((size_t size));
 extern void free JPP((void *ptr));
 #endif
@@ -34,12 +34,14 @@ extern void free JPP((void *ptr));
 GLOBAL(void *)
 jpeg_get_small (j_common_ptr cinfo, size_t sizeofobject)
 {
+  (void)cinfo;
   return (void *) malloc(sizeofobject);
 }
 
 GLOBAL(void)
 jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject)
 {
+  (void)cinfo;(void)sizeofobject;
   free(object);
 }
 
@@ -54,12 +56,14 @@ jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject)
 GLOBAL(void FAR *)
 jpeg_get_large (j_common_ptr cinfo, size_t sizeofobject)
 {
+  (void)cinfo;
   return (void FAR *) malloc(sizeofobject);
 }
 
 GLOBAL(void)
 jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject)
 {
+  (void)cinfo;(void)sizeofobject;
   free(object);
 }
 
@@ -71,8 +75,9 @@ jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject)
 
 GLOBAL(long)
 jpeg_mem_available (j_common_ptr cinfo, long min_bytes_needed,
-                   long max_bytes_needed, long already_allocated)
+        long max_bytes_needed, long already_allocated)
 {
+  (void)cinfo;(void)min_bytes_needed;(void)already_allocated;
   return max_bytes_needed;
 }
 
@@ -85,8 +90,9 @@ jpeg_mem_available (j_common_ptr cinfo, long min_bytes_needed,
 
 GLOBAL(void)
 jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,
-                        long total_bytes_needed)
+       long total_bytes_needed)
 {
+  (void)info;(void)total_bytes_needed;
   ERREXIT(cinfo, JERR_NO_BACKING_STORE);
 }
 
@@ -99,11 +105,13 @@ jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,
 GLOBAL(long)
 jpeg_mem_init (j_common_ptr cinfo)
 {
-  return 0;                    /* just set max_memory_to_use to 0 */
+  (void)cinfo;
+  return 0;      /* just set max_memory_to_use to 0 */
 }
 
 GLOBAL(void)
 jpeg_mem_term (j_common_ptr cinfo)
 {
+  (void)cinfo;
   /* no work */
 }