aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb39.C
blob: feefca77ad938a0d04772f54214aca620d62293b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Build don't link: 
#include <ctype.h>
#include <iostream.h>
// #include <streambuf.h>
#include <libio.h>
#include <strstream.h>

extern bool foo2 (ostream &out, istream &in);

bool
foo1 (ostream &out, const char *in)
{
  strstreambuf sb (in, (int) strlen (in));
  istream fmt (&sb);
  return foo2 (out, fmt);
}