blob: 5a67faaee803c7855fa465d8822c23dee041690a [file] [log] [blame]
#include <assert.h>
// clang-format off
#include <stdio.h>
#include <jpeglib.h>
// clang-format on
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 (JPEG_LIB_VERSION != CMAKE_EXPECTED_JPEG_VERSION);
}