blob: 27eda9a110017d6dadb229db48c901bbede13979 [file] [log] [blame]
Mike Kleinc1cc1d82020-09-11 11:11:33 -05001// Copyright 2020 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3#include <png.h>
4
5int main(int argc, char** argv) {
6 return png_access_version_number() == 10637
7 ? 0 : 1;
8}