X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/300a63912783f039c4df8be05542ce97786c3660..c6e0eaf00cd09a4e5237e70d8351049ec91d7653:/sym.h diff --git a/sym.h b/sym.h index 1de62f1..7dd9217 100644 --- a/sym.h +++ b/sym.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: sym.h,v 1.9 1999/08/02 16:53:48 mdw Exp $ + * $Id: sym.h,v 1.10 1999/12/10 23:42:04 mdw Exp $ * * Symbol table management * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: sym.h,v $ + * Revision 1.10 1999/12/10 23:42:04 mdw + * Change header file guard names. + * * Revision 1.9 1999/08/02 16:53:48 mdw * Improve type safety for sym_iter objects. * @@ -60,8 +63,8 @@ * */ -#ifndef SYM_H -#define SYM_H +#ifndef MLIB_SYM_H +#define MLIB_SYM_H #ifdef __cplusplus extern "C" { @@ -71,11 +74,11 @@ #include -#ifndef BITS_H +#ifndef MLIB_BITS_H # include "bits.h" #endif -#ifndef HASH_H +#ifndef MLIB_HASH_H # include "hash.h" #endif @@ -186,7 +189,7 @@ extern void *sym_find(sym_table */*t*/, const char */*n*/, long /*l*/, /* --- @sym_remove@ --- * * - * Arguments: @sym_table *i@ = pointer to a symbol table object + * Arguments: @sym_table *t@ = pointer to a symbol table object * @void *b@ = pointer to symbol table entry * * Returns: ---