summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/libjpeg/libjpeg.cpp
blob: de1fb7bad3cbc74886049c283f846a6e4fe7b86a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/types.h>
#include <stdio.h>
extern "C" {
#include <jpeglib.h>
}

int main(int, char **)
{
    j_compress_ptr cinfo;
    jpeg_create_compress(cinfo);
    return 0;
}