about summary refs log tree commit diff
path: root/sternenblog/entry.h
diff options
context:
space:
mode:
Diffstat (limited to 'sternenblog/entry.h')
-rw-r--r--sternenblog/entry.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/sternenblog/entry.h b/sternenblog/entry.h
index de8d868..66e76bb 100644
--- a/sternenblog/entry.h
+++ b/sternenblog/entry.h
@@ -1,10 +1,13 @@
 /*!
  * @file entry.h
  * @brief Construction and destruction of entries
- *
- * Requires prior inclusion of core.h.
  */
 
+#ifndef STERNENBLOG_ENTRY_H
+#define STERNENBLOG_ENTRY_H
+
+#include "core.h"
+
 /*!
  * @brief Construct an entry for a given `PATH_INFO`
  *
@@ -107,3 +110,5 @@ void entry_unget_text(struct entry *entry);
  * @see entry_unget_text
  */
 void free_entry(struct entry *entry);
+
+#endif