comparison zlib/example.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents ae3a4bfb450b
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* example.c -- usage example of the zlib compression library 1 /* example.c -- usage example of the zlib compression library
2 * Copyright (C) 1995-2004 Jean-loup Gailly. 2 * Copyright (C) 1995-2006 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */ 4 */
5 5
6 /* @(#) $Id: example.c,v 1.1.1.2 2002/03/11 21:53:23 tromey Exp $ */ 6 /* @(#) $Id: example.c,v 1.1.1.2 2002/03/11 21:53:23 tromey Exp $ */
7 7
8 #include "zlib.h"
8 #include <stdio.h> 9 #include <stdio.h>
9 #include "zlib.h"
10 10
11 #ifdef STDC 11 #ifdef STDC
12 # include <string.h> 12 # include <string.h>
13 # include <stdlib.h> 13 # include <stdlib.h>
14 #endif 14 #endif