• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // 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 
main(int argc,char ** argv)5 int main(int argc, char** argv) {
6     return png_access_version_number() == 10637
7         ? 0 : 1;
8 }
9