zutil.c (7648bc9fee8dec6cb3c4941e0165a930fbe8dcb0) | zutil.c (cd8822075a38d0734e74b1735e4b5dbef9789170) |
---|---|
1/* zutil.c -- target dependent utility functions for the compression library 2 * Copyright (C) 1995-2017 Jean-loup Gailly 3 * For conditions of distribution and use, see copyright notice in zlib.h 4 */ 5 6/* @(#) $Id$ */ 7 8#include "zutil.h" --- 122 unchanged lines hidden (view full) --- 131 * uncompress() 132 */ 133const char * ZEXPORT zError(err) 134 int err; 135{ 136 return ERR_MSG(err); 137} 138 | 1/* zutil.c -- target dependent utility functions for the compression library 2 * Copyright (C) 1995-2017 Jean-loup Gailly 3 * For conditions of distribution and use, see copyright notice in zlib.h 4 */ 5 6/* @(#) $Id$ */ 7 8#include "zutil.h" --- 122 unchanged lines hidden (view full) --- 131 * uncompress() 132 */ 133const char * ZEXPORT zError(err) 134 int err; 135{ 136 return ERR_MSG(err); 137} 138 |
139#if defined(_WIN32_WCE) 140 /* The Microsoft C Run-Time Library for Windows CE doesn't have | 139#if defined(_WIN32_WCE) && _WIN32_WCE < 0x800 140 /* The older Microsoft C Run-Time Library for Windows CE doesn't have |
141 * errno. We define it as a global variable to simplify porting. 142 * Its value is always 0 and should not be used. 143 */ 144 int errno = 0; 145#endif 146 147#ifndef HAVE_MEMCPY 148 --- 177 unchanged lines hidden --- | 141 * errno. We define it as a global variable to simplify porting. 142 * Its value is always 0 and should not be used. 143 */ 144 int errno = 0; 145#endif 146 147#ifndef HAVE_MEMCPY 148 --- 177 unchanged lines hidden --- |