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

@ -32,6 +32,9 @@
*
*/
#ifndef IOQUEUE_H
#define IOQUEUE_H
struct ioqueue {
struct qelem queue; /* queue fwd/back */
int bsize; /* basic block size */
@ -53,3 +56,5 @@ void ioq_write(struct ioqueue *ioq, char *buf, int cc);
int ioq_qsize(struct ioqueue *ioq);
void ioq_drain(struct ioqueue *ioq);
char *ioq_gets(struct ioqueue *ioq, char *buf, int cc, int *eol);
#endif