Mercurial > ~dholland > hg > tradcpp > index.cgi
changeset 153:28ac21a359d1
needs include guard
author | David A. Holland |
---|---|
date | Fri, 12 Jun 2015 00:35:46 -0400 |
parents | e787bd67bf88 |
children | a2c2fe8dbea3 |
files | place.h |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/place.h Fri Jun 12 00:33:38 2015 -0400 +++ b/place.h Fri Jun 12 00:35:46 2015 -0400 @@ -27,6 +27,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#ifndef PLACE_H +#define PLACE_H + #include <stdbool.h> enum places { @@ -54,3 +57,5 @@ const struct placefile *place_addfile(const struct place *incplace, const char *name, bool fromsystemdir); + +#endif /* PLACE_H */