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 _LOAN_H_
#define _LOAN_H_
#ifndef LOAN_H
#define LOAN_H
#define MAXLOAN 100000
#define SECS_PER_DAY (60*60*24)
@ -66,4 +66,4 @@ extern double loan_owed(struct lonstr *loan, time_t paytime);
#define getloanp(n) \
(struct lonstr *) ef_ptr(EF_LOAN, n)
#endif /* _LOAN_H_ */
#endif