1 /* 2007-01-02 SMS.
2  * VMS-specific BZLIB.H jacket header file to ensure compatibility with
3  * BZIP2 code compiled using /NAMES = AS_IS.
4  *
5  * The logical name INCL_BZIP2 must point to the BZIP2 source directory.
6  *
7  * A "names as_is" prototype for bz_internal_error() is included for the
8  * same reason.  See bzip2 "bzlib_private.h".  Note that this "names
9  * as_is" prototype must be the first to be read by the compiler, but
10  * one or more other prototypes (perhaps with the default "names"
11  * attributes) should cause no trouble.
12  */
13 
14 #pragma names save
15 #pragma names as_is
16 
17 #include "INCL_BZIP2:BZLIB.H"
18 
19 extern void bz_internal_error ( int bzerrcode );
20 
21 #pragma names restore
22