$OpenBSD: patch-modules_speller_default_split_cpp,v 1.1 2004/04/08 05:16:41 jolan Exp $
--- modules/speller/default/split.cpp.orig	2001-11-29 21:55:48.000000000 -0600
+++ modules/speller/default/split.cpp	2004-04-07 22:22:19.000000000 -0500
@@ -1,4 +1,4 @@
-#include <strstream>
+#include <sstream>
 #include "split.hpp"
 
 using namespace std;
@@ -8,7 +8,7 @@ namespace aspeller {
 
   vector<String> split(const String & str) {
     vector<String> data;
-    istrstream s(str.c_str());
+    istringstream s(str.c_str());
     String item;
     while (s >> item) {
       data.push_back(item);
