diff place.h @ 153:28ac21a359d1

needs include guard
author David A. Holland
date Fri, 12 Jun 2015 00:35:46 -0400
parents 2b0b61fd1a36
children f14f5352956c
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 */