1984-05-17 13:42:36 +00:00
|
|
|
/*
|
1987-03-10 01:42:07 +00:00
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
1984-05-17 13:42:36 +00:00
|
|
|
*
|
|
|
|
* Author: Hans van Staveren
|
|
|
|
*/
|
2019-05-10 17:17:40 +00:00
|
|
|
#include "param.h"
|
|
|
|
#include "types.h"
|
|
|
|
|
1984-05-17 13:42:36 +00:00
|
|
|
|
1991-03-22 14:26:10 +00:00
|
|
|
#ifdef ALLOWSPECIAL
|
2019-05-10 17:17:40 +00:00
|
|
|
bool special(line_p *lpp,byte *bp,int patlen)
|
1984-05-17 13:42:36 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
return(FALSE);
|
|
|
|
}
|
1991-03-22 14:26:10 +00:00
|
|
|
#endif
|