Delinted
authorceriel <none@none>
Fri, 22 Mar 1991 14:26:10 +0000 (14:26 +0000)
committerceriel <none@none>
Fri, 22 Mar 1991 14:26:10 +0000 (14:26 +0000)
util/opt/backward.c
util/opt/lookup.c
util/opt/special.c

index 0739092..a774dc6 100644 (file)
@@ -40,6 +40,8 @@ short curfrag = 3;    /* see also peephole.c */
 offset rombuf[MAXROM];
 int    rc;
 
+extern offset aoff();
+
 backward() {
        register line_p lnp;
        line_p  next;
index 7cdd0b6..f641ef8 100644 (file)
@@ -16,6 +16,8 @@ static char rcsid[] = "$Header$";
  * Author: Hans van Staveren
  */
 
+extern char *strncpy();
+
 unsigned hash(string) char *string; {
        register char *p;
        register unsigned i,sum;
index 08f124f..8dcfc71 100644 (file)
@@ -12,6 +12,7 @@ static char rcsid[] = "$Header$";
  * Author: Hans van Staveren
  */
 
+#ifdef ALLOWSPECIAL
 bool special(lpp,bp,patlen)
 line_p *lpp;
 byte *bp;
@@ -20,3 +21,4 @@ int patlen;
 
        return(FALSE);
 }
+#endif