1 /* precheck/chk-zlib.c  -  Check that Zlib include files and libraries are available
2  * Copyright (c) 2008 Symlabs (symlabs@symlabs.com), All Rights Reserved.
3  * Author: Sampo Kellomaki (sampo@iki.fi)
4  * This is confidential unpublished proprietary source code of the author.
5  * NO WARRANTY, not even implied warranties. Contains trade secrets.
6  * Distribution prohibited unless authorized in writing.
7  * Licensed under Apache License 2.0, see file COPYING.
8  * $Id: chk-zlib.c,v 1.1 2008-09-17 03:41:11 sampo Exp $
9  *
10  * 16.9.2008, created --Sampo
11  */
12 
13 #include <zlib.h>
14 
15 #include <stdio.h>
16 
17 /* Called by: */
main(int argc,char ** argv)18 int main(int argc, char** argv)
19 {
20   printf("  -- zlib version from header: %s\n", ZLIB_VERSION);
21   printf("  -- from zlibVersion(): %s\n", zlibVersion());
22   return 0;
23 }
24 
25 /* EOF  --  chk-zlib.c */
26