aboutsummaryrefslogtreecommitdiff
path: root/elisp.h
diff options
context:
space:
mode:
authorLukas Fürmetz <fuermetz@mailbox.org>2017-11-21 14:04:11 +0100
committerLukas Fürmetz <fuermetz@mailbox.org>2017-11-21 21:38:32 +0100
commit53415af332e5e30e4910b05ebdb88d478a387eba (patch)
treefd4c7e4c6b1456b865d131a8a05b74152b4ed8f0 /elisp.h
parent40a8656c8749f3f2fc213f8358fd0deda0154ea5 (diff)
Add include guards to header files
Diffstat (limited to 'elisp.h')
-rw-r--r--elisp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/elisp.h b/elisp.h
index 026db90..88edd00 100644
--- a/elisp.h
+++ b/elisp.h
@@ -1,3 +1,6 @@
+#ifndef ELISP_H
+#define ELISP_H
+
#include "vterm.h"
#include <emacs-module.h>
@@ -42,3 +45,5 @@ void erase_buffer(emacs_env *env);
void insert(emacs_env *env, emacs_value string);
void goto_char(emacs_env *env, int pos);
void toggle_cursor(emacs_env *env, bool visible);
+
+#endif /* ELISP_H */