special.c 401 B

123456789101112131415161718192021222324
  1. #ifndef NORCSID
  2. static char rcsid[] = "$Id$";
  3. #endif
  4. #include "param.h"
  5. #include "types.h"
  6. /*
  7. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  8. * See the copyright notice in the ACK home directory, in the file "Copyright".
  9. *
  10. * Author: Hans van Staveren
  11. */
  12. #ifdef ALLOWSPECIAL
  13. bool special(lpp,bp,patlen)
  14. line_p *lpp;
  15. byte *bp;
  16. int patlen;
  17. {
  18. return(FALSE);
  19. }
  20. #endif