bzlib.h 679 B

123456789101112131415161718192021
  1. /* 2007-01-13 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. #pragma names save
  14. #pragma names as_is
  15. #include "INCL_BZIP2:BZLIB.H"
  16. extern void bz_internal_error ( int errcode );
  17. #pragma names restore