unreduce.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. Copyright (c) 1990-2002 Info-ZIP. All rights reserved.
  3. See the accompanying file LICENSE, version 2000-Apr-09 or later
  4. (the contents of which are also included in unzip.h) for terms of use.
  5. If, for some reason, all these files are missing, the Info-ZIP license
  6. also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html
  7. */
  8. /*---------------------------------------------------------------------------
  9. unreduce.c
  10. Copyright-clean dummy module, without any real code.
  11. If you really need unreduce support, replace this module by the full
  12. source code, available as add-on package from our distribution site.
  13. ---------------------------------------------------------------------------*/
  14. #define __UNREDUCE_C /* identifies this source module */
  15. #define UNZIP_INTERNAL
  16. #include "unzip.h" /* defines COPYRIGHT_CLEAN by default */
  17. #ifndef COPYRIGHT_CLEAN
  18. /* This line is indented to hide the #error directive from pure traditional
  19. * K&R C preprocessors. These do not recognize the #error directive, but
  20. * they also recognize only lines that start with a '#' in column 1 as
  21. * preprocessor directives.
  22. */
  23. #error This dummy-module does not support the unreduce method!
  24. #endif /* !COPYRIGHT_CLEAN */