about summary refs log tree commit diff stats
path: root/src/command/cmd_ac.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-05-23 00:06:01 +0100
committerJames Booth <boothj5@gmail.com>2016-05-23 00:06:01 +0100
commitdfe613418f7d77ec56d75554b501c3a985c5e3fd (patch)
tree843a2830654e0b30ecb15cfee85b8f35fa118497 /src/command/cmd_ac.h
parentfb34785566c59e055399d2c5eb8378ea44c8c983 (diff)
downloadprofani-tty-dfe613418f7d77ec56d75554b501c3a985c5e3fd.tar.gz
Fix command headers
Diffstat (limited to 'src/command/cmd_ac.h')
-rw-r--r--src/command/cmd_ac.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/command/cmd_ac.h b/src/command/cmd_ac.h
index 99740246..b294fcd5 100644
--- a/src/command/cmd_ac.h
+++ b/src/command/cmd_ac.h
@@ -1,5 +1,5 @@
 /*
- * cmd_autocomplete.h
+ * cmd_ac.h
  *
  * Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
  *
@@ -32,6 +32,9 @@
  *
  */
 
+#ifndef CMD_AC_H
+#define CMD_AC_H
+
 #include "config/preferences.h"
 #include "command/cmd_funcs.h"
 
@@ -55,3 +58,5 @@ void cmd_ac_remove_form_fields(DataForm *form);
 char* cmd_ac_complete(ProfWin *window, const char *const input);
 
 void cmd_ac_reset(ProfWin *window);
+
+#endif