mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-03-06 17:01:39 +00:00
10 lines
223 B
C++
10 lines
223 B
C++
#include <png.h>
|
|
|
|
int main()
|
|
{
|
|
png_structp png = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
|
|
AEDI_EXPECT(png != nullptr);
|
|
|
|
png_destroy_write_struct(&png, nullptr);
|
|
return 0;
|
|
}
|