1
2
3
4
5
6
7
8
9
10
11
12 | $ make
gcc -w -m32 -O2 -DNDEBUG -c main.c -o main.o
main.c:12390:13: error: conflicting types for ‘jpeg_mem_src’
static void jpeg_mem_src( j_decompress_ptr cinfo, byte *mem, int len )
^
In file included from defs.h:54:0,
from main.c:46:
/usr/include/jpeglib.h:1008:14: note: previous declaration of ‘jpeg_mem_src’ was here
EXTERN(void) jpeg_mem_src JPP((j_decompress_ptr cinfo,
^
Makefile:20: recipe for target 'main.o' failed
make: *** [main.o] Error 1
|