Fixing compiler warning -Wmissing-prototypes

jdatadst.c:252:1: warning: no previous prototype for function 'jpeg_mem_dest_internal' [-Wmissing-prototypes]
This commit is contained in:
Puyan Lotfi
2018-06-08 10:16:31 -07:00
committed by Kornel
parent 3820eb1e2d
commit 7678cba140

View File

@@ -22,6 +22,7 @@
#include "jinclude.h"
#include "jpeglib.h"
#include "jerror.h"
#include "jpegint.h"
#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
extern void *malloc (size_t size);