about summary refs log tree commit diff stats
path: root/src/window.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-11-25 23:29:02 +0000
committerJames Booth <boothj5@gmail.com>2012-11-25 23:29:02 +0000
commit4aee534725241e3d2daccaee4b271b4ade115f18 (patch)
tree3a5cf6ca14b8138943eb52a868c3dbbf34cf91ff /src/window.h
parent58655a90c356f5b5a712146b8f006ba869be734d (diff)
downloadprofani-tty-4aee534725241e3d2daccaee4b271b4ade115f18.tar.gz
Added header define to window.h
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h
index 516b73a0..d9fc055d 100644
--- a/src/window.h
+++ b/src/window.h
@@ -20,6 +20,9 @@
  *
  */
 
+#ifndef WINDOW_H
+#define WINDOW_H
+
 #include "ui.h"
 
 typedef struct prof_win_t {
@@ -35,3 +38,5 @@ typedef struct prof_win_t {
 
 ProfWin* window_create(const char * const title, int cols, win_type_t type);
 void window_free(ProfWin *window);
+
+#endif