diff arogue7/fight.c @ 126:b786053d2f37

arogue7: add missing header includes.
author John "Elwin" Edwards
date Fri, 08 May 2015 16:45:41 -0400
parents adfa37e67084
children 66b0263af424
line wrap: on
line diff
--- a/arogue7/fight.c	Fri May 08 15:24:40 2015 -0400
+++ b/arogue7/fight.c	Fri May 08 16:45:41 2015 -0400
@@ -19,6 +19,7 @@
 
 #include "curses.h"
 #include <ctype.h>
+#include <string.h>
 #include "rogue.h"
 
 int hit(struct object *weapon, bool see_att, bool see_def, char *er, char *ee, bool back_stab, bool thrown, bool short_msg);
@@ -335,7 +336,6 @@
     bool did_hit = FALSE;
     int prop_hplus, prop_dplus;
     int vampiric_damage;
-    char *strchr();
 
     /* Get statistics */
     att = &att_er->t_stats;