Normalize inclusion guards: use NAME_H for name.h. Some headers

lacked them, others used reserved identifiers.
This commit is contained in:
Markus Armbruster 2005-12-29 10:16:01 +00:00
parent b316861e9d
commit fa52e6944d
55 changed files with 171 additions and 150 deletions

View file

@ -27,6 +27,9 @@
* Added path list caching structures
*/
#ifndef AS_H
#define AS_H
#include <stdio.h> /* for FILE */
#include "misc.h" /* for s_char */
@ -183,3 +186,5 @@ extern void as_setcinq(struct as_data *adp,
extern void as_free_hashtab(struct as_data *adp);
extern int as_winnow(struct as_data *adp,
struct as_coord *coords, int ncoords);
#endif