Files
qt5.12.8/config.tests/libjpeg/main.cpp
2025-08-26 22:57:23 +08:00

16 lines
281 B
C++

/* Generated by configure */
#include <sys/types.h>
#include <stdio.h>
extern "C" {
#include <jpeglib.h>
}
j_compress_ptr cinfo;
int main(int argc, char **argv)
{
(void)argc; (void)argv;
/* BEGIN TEST: */
jpeg_create_compress(cinfo);
/* END TEST */
return 0;
}