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 @@
*
*/
#ifndef _QUEUE
#define _QUEUE
#ifndef QUEUE_H
#define QUEUE_H
#define QEMPTY(p) ((p)->q_forw == (p))
@ -46,4 +46,4 @@ void remque(struct qelem *p);
void initque(struct qelem *p);
struct qelem *makeqt(int nelem);
#endif /* _QUEUE */
#endif