]> git.sur5r.net Git - openldap/blob - build/unproto/symbol.h
Sync with HEAD (fix global schemadn)
[openldap] / build / unproto / symbol.h
1 /* @(#) symbol.h 1.1 91/09/22 21:21:42 */
2
3 struct symbol {
4     char   *name;                       /* symbol name */
5     int     type;                       /* symbol type */
6     struct symbol *next;
7 };
8
9 extern void sym_enter();                /* add symbol to table */
10 extern struct symbol *sym_find();       /* locate symbol */
11 extern void sym_init();                 /* prime the table */