You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
345 B
17 lines
345 B
7 years ago
|
#include <assert.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include <jpeglib.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
/* Without any JPEG file to open, test that the call fails as
|
||
|
expected. This tests that linking worked. */
|
||
|
struct jpeg_decompress_struct cinfo;
|
||
|
struct jpeg_error_mgr jerr;
|
||
|
cinfo.err = jpeg_std_error(&jerr);
|
||
|
jpeg_create_decompress(&cinfo);
|
||
|
|
||
|
return 0;
|
||
|
}
|