- stevesk@cvs.openbsd.org 2006/02/22 00:04:45
     [canohost.c clientloop.c includes.h match.c readconf.c scp.c ssh.c]
     [sshconnect.c]
     move #include <ctype.h> out of includes.h; ok djm@
diff --git a/readconf.c b/readconf.c
index da704d8..392fc52 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,11 +12,13 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: readconf.c,v 1.147 2006/02/20 17:19:54 stevesk Exp $");
+RCSID("$OpenBSD: readconf.c,v 1.148 2006/02/22 00:04:44 stevesk Exp $");
 
 #include <sys/types.h>
 #include <sys/stat.h>
 
+#include <ctype.h>
+
 #include "ssh.h"
 #include "xmalloc.h"
 #include "compat.h"