File: bzlib.h

package info (click to toggle)
unzip 6.0-16%2Bdeb8u3
  • links: PTS
  • area: main
  • in suites: jessie
  • size: 8,768 kB
  • ctags: 10,194
  • sloc: ansic: 55,133; cpp: 4,084; makefile: 2,517; asm: 1,789; cs: 1,012; sh: 119
file content (21 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 2007-01-02 SMS.
 * VMS-specific BZLIB.H jacket header file to ensure compatibility with
 * BZIP2 code compiled using /NAMES = AS_IS.
 *
 * The logical name INCL_BZIP2 must point to the BZIP2 source directory.
 *
 * A "names as_is" prototype for bz_internal_error() is included for the
 * same reason.  See bzip2 "bzlib_private.h".  Note that this "names
 * as_is" prototype must be the first to be read by the compiler, but
 * one or more other prototypes (perhaps with the default "names"
 * attributes) should cause no trouble.
 */

#pragma names save
#pragma names as_is

#include "INCL_BZIP2:BZLIB.H"

extern void bz_internal_error ( int bzerrcode );

#pragma names restore