From: Jason Green Newsgroups: comp.os.msdos.djgpp Subject: Re: sstream standart header Date: Sun, 10 Dec 2000 15:34:42 +0000 Organization: Customer of Energis Squared Lines: 17 Message-ID: References: <90vqjd$ll8$1 AT venus DOT telepac DOT pt> NNTP-Posting-Host: modem-138.delaware.dialup.pol.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: newsg3.svr.pol.co.uk 976462491 14721 62.137.59.138 (10 Dec 2000 15:34:51 GMT) NNTP-Posting-Date: 10 Dec 2000 15:34:51 GMT X-Complaints-To: abuse AT theplanet DOT net X-Newsreader: Forte Agent 1.7/32.534 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Eli Zaretskii wrote: > On Sun, 10 Dec 2000, Paulo J. Matos aka PDestroy wrote: > > > gpp -g -Wall -c -o banco.o banco.cpp > > In file included from banco.cpp:6: > > ordenado.h:7: sstream: No such file or directory (ENOENT) > > make.exe: *** [banco.o] Error 1 > > There's no sstream header in the C++ library distributed with GCC > 2.95.2. Are you sure you didn't mean strstream? I think replaces in the final C++ standard. It might be possible to use with some tweaking to the program's code. For example, use strstream class instead of stringstream. Not tried it myself, just an idea...