diff --git a/src/proto.h b/src/proto.h
index 8a45c5af1e95e065cf18d6ddea8beb58bf58dfb1..141040cc42edf84273efdde1bb36b04c24e8905e 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -140,7 +140,7 @@ extern historyheadtype search_history;
 extern historyheadtype replace_history;
 #endif
 
-extern int curses_ended;
+extern bool curses_ended;
 
 /* Functions we want available. */
 
@@ -154,7 +154,7 @@ void update_color(void);
 /* Public functions in cut.c */
 void cutbuffer_reset(void);
 filestruct *get_cutbottom(void);
-void add_to_cutbuffer(filestruct *inptr, int allow_concat);
+void add_to_cutbuffer(filestruct *inptr, bool allow_concat);
 void cut_marked_segment(void);
 void do_cut_text(void);
 void do_uncut_text(void);