summary refs log tree commit diff stats
path: root/src/common/strlutil.h
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2013-04-01 01:02:03 +0200
committerBerke Viktor <bviktor@hexchat.org>2013-04-01 01:02:03 +0200
commit0f204234551edc5db76ac603ab577df319031a8b (patch)
treec82469ac62ca69f935f91549789d9f24559a9ebb /src/common/strlutil.h
parent4de6db6c47e45816364aee7a4fd0c2318d1ec934 (diff)
Consistent header macros everywhere
Diffstat (limited to 'src/common/strlutil.h')
-rw-r--r--src/common/strlutil.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/strlutil.h b/src/common/strlutil.h
index 0b03a2e0..2d66bc6d 100644
--- a/src/common/strlutil.h
+++ b/src/common/strlutil.h
@@ -14,5 +14,10 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#ifndef HEXCHAT_STRLUTIL_H
+#define HEXCHAT_STRLUTIL_H
+
 size_t strlcat(char *dst, const char *src, size_t siz);
 size_t strlcpy(char *dst, const char *src, size_t siz);
+
+#endif