diff options
Diffstat (limited to 'Modules/zlib/example.c')
-rw-r--r-- | Modules/zlib/example.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/zlib/example.c b/Modules/zlib/example.c index 52bc261..604736f 100644 --- a/Modules/zlib/example.c +++ b/Modules/zlib/example.c @@ -1,19 +1,19 @@ /* example.c -- usage example of the zlib compression library - * Copyright (C) 1995-2004 Jean-loup Gailly. + * Copyright (C) 1995-2006 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ -#include <stdio.h> #include "zlib.h" +#include <stdio.h> #ifdef STDC # include <string.h> # include <stdlib.h> #endif -#if defined(VMS) +#if defined(VMS) || defined(RISCOS) # define TESTFILE "foo-gz" #else # define TESTFILE "foo.gz" |