25 lines
401 B
C
25 lines
401 B
C
#ifndef NORCSID
|
|
static char rcsid[] = "$Id$";
|
|
#endif
|
|
|
|
#include "param.h"
|
|
#include "types.h"
|
|
|
|
/*
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*
|
|
* Author: Hans van Staveren
|
|
*/
|
|
|
|
#ifdef ALLOWSPECIAL
|
|
bool special(lpp,bp,patlen)
|
|
line_p *lpp;
|
|
byte *bp;
|
|
int patlen;
|
|
{
|
|
|
|
return(FALSE);
|
|
}
|
|
#endif
|