# HG changeset patch
# User David A. Holland
# Date 1434083746 14400
# Node ID 28ac21a359d184bc04f067d68fad9e28c82c730d
# Parent  e787bd67bf88c1e1aa86ab3df1a9c32af2f7f02b
needs include guard

diff -r e787bd67bf88 -r 28ac21a359d1 place.h
--- 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 */