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

@ -31,8 +31,8 @@
* Steve McClure, 1998
*/
#ifndef _XY_H_
#define _XY_H_
#ifndef XY_H
#define XY_H
#include "sect.h"
#include "nat.h"
@ -69,4 +69,4 @@ extern coord xnorm(coord x);
extern coord ynorm(coord y);
extern int xyinrange(coord x, coord y, struct range *rp);
#endif /* _XY_H_ */
#endif