$NetBSD: patch-ab,v 1.3 2003/09/30 17:26:58 mycroft Exp $

--- modules/speller/default/split.cpp.orig	2001-11-30 03:55:48.000000000 +0000
+++ modules/speller/default/split.cpp	2003-09-30 17:23:23.000000000 +0000
@@ -1,4 +1,4 @@
-#include <strstream>
+#include <sstream>
 #include "split.hpp"
 
 using namespace std;
@@ -8,7 +8,7 @@
 
   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);
