xref: /original-bsd/usr.bin/m4/look.h (revision e59fb703)
1 /*-
2  * Copyright (c) 1991 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)look.h	5.1 (Berkeley) 09/03/91
8  */
9 
10 #ifdef __STDC__
11 #define proto(s) s
12 #else
13 #define proto(s) ()
14 #endif
15 
16 int hash proto((char *name));
17 ndptr lookup proto((char *name));
18 ndptr addent proto((char *name));
19 void remhash proto((char *name, int all));
20 
21 #undef proto
22